This repository has been archived on 2020-07-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Xavier Perignon f6ab6cb434 reorg
2020-06-15 16:07:19 +02:00

13 lines
265 B
Python

#
# common-cxxflags.py
# Convenience script to apply customizations to CPP flags
#
Import("env")
env.Append(CXXFLAGS=[
"-Wno-register"
#"-Wno-incompatible-pointer-types",
#"-Wno-unused-const-variable",
#"-Wno-maybe-uninitialized",
#"-Wno-sign-compare"
])