summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2021-08-19 14:47:56 -0300
committerBastiaan Olij <mux213@gmail.com>2021-09-27 23:08:08 +1000
commit8bcf32a61946620017f61568f4aa10070db4bd4e (patch)
treea8b115439d994eee49ab03ceeccaa5c9912ca596 /SConstruct
parente4ed48976a962b67e9585cc2d20d11f115ef7949 (diff)
downloadredot-cpp-8bcf32a61946620017f61568f4aa10070db4bd4e.tar.gz
Fix issues with method calls
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct14
1 files changed, 9 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index 2e52abf..7049baf 100644
--- a/SConstruct
+++ b/SConstruct
@@ -158,11 +158,14 @@ if host_platform == "windows" and env["platform"] != "android":
opts.Update(env)
+if env["target"] == "debug":
+ env.Append(CPPDEFINES=["DEBUG_ENABLED", "DEBUG_METHODS_ENABLED"])
+
if env["platform"] == "linux" or env["platform"] == "freebsd":
if env["use_llvm"]:
env["CXX"] = "clang++"
- env.Append(CCFLAGS=["-fPIC", "-std=c++14", "-Wwrite-strings"])
+ env.Append(CCFLAGS=["-fPIC", "-std=c++17", "-Wwrite-strings"])
env.Append(LINKFLAGS=["-Wl,-R,'$$ORIGIN'"])
if env["target"] == "debug":
@@ -184,7 +187,7 @@ elif env["platform"] == "osx":
if env["bits"] == "32":
raise ValueError("Only 64-bit builds are supported for the macOS target.")
- env.Append(CCFLAGS=["-std=c++14", "-arch", env["macos_arch"]])
+ env.Append(CCFLAGS=["-std=c++17", "-arch", env["macos_arch"]])
if env["macos_deployment_target"] != "default":
env.Append(CCFLAGS=["-mmacosx-version-min=" + env["macos_deployment_target"]])
@@ -231,7 +234,7 @@ elif env["platform"] == "ios":
env["AR"] = compiler_path + "ar"
env["RANLIB"] = compiler_path + "ranlib"
- env.Append(CCFLAGS=["-std=c++14", "-arch", env["ios_arch"], "-isysroot", sdk_path])
+ env.Append(CCFLAGS=["-std=c++17", "-arch", env["ios_arch"], "-isysroot", sdk_path])
env.Append(
LINKFLAGS=[
"-arch",
@@ -283,7 +286,7 @@ elif env["platform"] == "windows":
# Native or cross-compilation using MinGW
if host_platform == "linux" or host_platform == "freebsd" or host_platform == "osx" or env["use_mingw"]:
# These options are for a release build even using target=debug
- env.Append(CCFLAGS=["-O3", "-std=c++14", "-Wwrite-strings"])
+ env.Append(CCFLAGS=["-O3", "-std=c++17", "-Wwrite-strings"])
env.Append(
LINKFLAGS=[
"--static",
@@ -429,7 +432,7 @@ else:
if env["generate_bindings"] == "auto":
# Check if generated files exist
- should_generate_bindings = not os.path.isfile(os.path.join(os.getcwd(), "src", "gen", "object.cpp"))
+ should_generate_bindings = not os.path.isfile(os.path.join(os.getcwd(), "gen", "src", "classes", "object.cpp"))
else:
should_generate_bindings = env["generate_bindings"] in ["yes", "true"]
@@ -441,6 +444,7 @@ if should_generate_bindings:
# Sources to compile
sources = []
+add_sources(sources, "src", "cpp")
add_sources(sources, "src/core", "cpp")
add_sources(sources, "src/variant", "cpp")
add_sources(sources, "gen/src/variant", "cpp")