blob: 6ddfd98d956a095a29f97c953e7f42c99b3b5a35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- a/SConstruct
+++ b/SConstruct
@@ -724,7 +724,6 @@ if ARGUMENTS.get('DEBUG') == "1":
O_value = ARGUMENTS.get('O', O_DEBUG)
else:
conf.env.Append(CCFLAGS=['-DG_DISABLE_ASSERT', '-DNDEBUG'])
- conf.env.Append(LINKFLAGS=['-s'])
O_value = ARGUMENTS.get('O', O_RELEASE)
if O_value == 'debug':
@@ -735,7 +734,6 @@ elif O_value == 'release':
cc_O_option = '-O' + O_value
print("Using compiler optimisation {} (to change, run scons with O=[0|1|2|3|s|fast])".format(cc_O_option))
-conf.env.Append(CCFLAGS=[cc_O_option])
if ARGUMENTS.get('SYMBOLS') == '1':
print("Compiling with debugging symbols")
|