Make strtoll and strtod malloc-free
Some checks failed
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=OFF (push) Successful in 19s
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=OFF (push) Successful in 18s
CMake / ubuntu-latest - shared=OFF, pthread=OFF, posix=ON (push) Failing after 22s
CMake / ubuntu-latest - shared=ON, pthread=OFF, posix=ON (push) Failing after 20s
CMake / ubuntu-latest - shared=OFF, pthread=ON, posix=ON (push) Failing after 19s
CMake / ubuntu-latest - shared=ON, pthread=ON, posix=ON (push) Failing after 20s

Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-08-01 04:08:00 +03:00
parent 2ec675a320
commit 3d8f2270ef
3 changed files with 144 additions and 55 deletions

View File

@@ -4,7 +4,7 @@ set -e
BUILD_DIR="BUILD"
INSTALL_DIR="$(pwd)/install"
CFLAGS="-std=c99 -Wall -Wextra -pedantic -Werror -Wno-newline-eof -Wno-language-extension-token"
CFLAGS="-std=c99 -Wall -Wextra -pedantic -Werror -Wno-newline-eof -Wno-language-extension-token -lm"
BUILD_SHARED=1
PTHREAD_SUPPORT=1
POSIX_SUPPORT=1