2024-02-14 14:32:27 +00:00
|
|
|
import common_compiler_flags
|
2022-06-06 13:09:32 +00:00
|
|
|
from SCons.Variables import *
|
2022-07-04 15:50:54 +00:00
|
|
|
from SCons.Tool import clang, clangxx
|
2022-06-06 13:09:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
def options(opts):
|
|
|
|
opts.Add(BoolVariable("use_llvm", "Use the LLVM compiler - only effective when targeting Linux", False))
|
|
|
|
|
|
|
|
|
|
|
|
def exists(env):
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def generate(env):
|
|
|
|
if env["use_llvm"]:
|
2022-07-04 15:50:54 +00:00
|
|
|
clang.generate(env)
|
|
|
|
clangxx.generate(env)
|
2024-02-14 14:32:27 +00:00
|
|
|
elif env.use_hot_reload:
|
2023-08-04 16:02:57 +00:00
|
|
|
# Required for extensions to truly unload.
|
|
|
|
env.Append(CXXFLAGS=["-fno-gnu-unique"])
|
2022-06-06 13:09:32 +00:00
|
|
|
|
|
|
|
env.Append(CCFLAGS=["-fPIC", "-Wwrite-strings"])
|
|
|
|
env.Append(LINKFLAGS=["-Wl,-R,'$$ORIGIN'"])
|
|
|
|
|
|
|
|
if env["arch"] == "x86_64":
|
|
|
|
# -m64 and -m32 are x86-specific already, but it doesn't hurt to
|
|
|
|
# be clear and also specify -march=x86-64. Similar with 32-bit.
|
|
|
|
env.Append(CCFLAGS=["-m64", "-march=x86-64"])
|
|
|
|
env.Append(LINKFLAGS=["-m64", "-march=x86-64"])
|
|
|
|
elif env["arch"] == "x86_32":
|
|
|
|
env.Append(CCFLAGS=["-m32", "-march=i686"])
|
|
|
|
env.Append(LINKFLAGS=["-m32", "-march=i686"])
|
|
|
|
elif env["arch"] == "arm64":
|
|
|
|
env.Append(CCFLAGS=["-march=armv8-a"])
|
|
|
|
env.Append(LINKFLAGS=["-march=armv8-a"])
|
|
|
|
elif env["arch"] == "rv64":
|
|
|
|
env.Append(CCFLAGS=["-march=rv64gc"])
|
|
|
|
env.Append(LINKFLAGS=["-march=rv64gc"])
|
2023-07-22 12:46:14 +00:00
|
|
|
|
|
|
|
env.Append(CPPDEFINES=["LINUX_ENABLED", "UNIX_ENABLED"])
|
2024-02-14 14:32:27 +00:00
|
|
|
|
|
|
|
common_compiler_flags.generate(env)
|