summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-09-19 22:34:02 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2019-09-19 22:34:18 -0600
commit4992c691080c1e56c5798aae51273a345a406550 (patch)
treeaf002a729d1a991cdcd1f63bff7f7dbbd3173ea7 /wscript
parent61afcb8e2bb7cfa8b1fb8bd2f56c4700679b79c7 (diff)
remove compiler flags required only by boost::msm and a large transition table
Diffstat (limited to 'wscript')
-rw-r--r--wscript11
1 files changed, 0 insertions, 11 deletions
diff --git a/wscript b/wscript
index da86736a3d..1933c3af66 100644
--- a/wscript
+++ b/wscript
@@ -383,17 +383,6 @@ int main() { return 0; }''',
autowaf.set_basic_compiler_flags (conf,flags_dict)
- #
- # the transition table for the libardour transport state machine
- # is larger than the default that is hard-coded in boost::mpl.
- # These need to be defined before any boost headers are used,
- # and just about the only way to be sure that is true is to define
- # them on the "command line" here.
- #
- cxx_flags.append ('-DBOOST_MPL_CFG_NO_PREPROCESSED_HEADERS')
- cxx_flags.append ('-DBOOST_MPL_LIMIT_VECTOR_SIZE=30')
- cxx_flags.append ('-DBOOST_MPL_LIMIT_MAP_SIZE=30')
-
if conf.options.asan:
conf.check_cxx(cxxflags=["-fsanitize=address", "-fno-omit-frame-pointer"], linkflags=["-fsanitize=address"])
cxx_flags.append('-fsanitize=address')