mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-04-19 12:57:19 +00:00
10 lines
236 B
Python
10 lines
236 B
Python
Import("env", "projenv")
|
|
|
|
for e in [ env, projenv ]:
|
|
# If compiler uses `-m32`, propagate it to linker.
|
|
# Add via script, because `-Wl,-m32` does not work.
|
|
if "-m32" in e['CCFLAGS']:
|
|
e.Append(LINKFLAGS = ["-m32"])
|
|
|
|
|