This commit is contained in:
fvanroie 2024-02-25 20:38:12 +01:00
commit d9ee633c92
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@
#if defined(POSIX)
#include <unistd.h>
#include <linux/limits.h>
#include <limits.h>
#define cwd getcwd
#endif

View File

@ -18,7 +18,7 @@
#include <netdb.h>
#include <unistd.h>
#include <fcntl.h>
#include <linux/limits.h>
#include <limits.h>
#include <sys/types.h>
#include <pwd.h>
#define cwd getcwd

View File

@ -1,7 +1,7 @@
Import("env")
#env.Replace(CC="gcc-10", CXX="g++-10")
env.Replace(CC="gcc-12", CXX="g++-12")
env.Replace(CC="gcc-13", CXX="g++-13")
env.Replace(BUILD_SCRIPT="tools/osx_build_script.py")