aboutsummaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index b543bc0ebb..6b20ac2177 100644
--- a/SConstruct
+++ b/SConstruct
@@ -166,6 +166,10 @@ elif 'armclang' in cpp_compiler:
else:
env.Append(CXXFLAGS = ['-Wlogical-op','-Wnoexcept','-Wstrict-null-sentinel'])
+if cpp_compiler == 'g++':
+ # Don't strip comments that could include markers
+ env.Append(CXXFLAGS = ['-C'])
+
if env['cppthreads']:
env.Append(CPPDEFINES = [('ARM_COMPUTE_CPP_SCHEDULER', 1)])