diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-11-24 17:47:59 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-11-24 17:47:59 +0200 |
commit | dc2eeb3741fb3435707b1dc8a78a3e88d8836314 (patch) | |
tree | 4bb1bfedea5f15ff836c07af76b8c4636288ecfc /build | |
parent | 354bb40e75d94466e91fe6960523612c9d17ccfb (diff) |
Various tweaks
Diffstat (limited to 'build')
-rw-r--r-- | build/root.build | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/build/root.build b/build/root.build index b699441..79a2c0e 100644 --- a/build/root.build +++ b/build/root.build @@ -12,11 +12,11 @@ c{*}: extension = c # The upstream package uses -std=gnu++03 on Linux. However we can't specify # C++03 as the code refers to the strtoull() C function that was introduced # in C++11. Specifying C++11 looks like an overkill, and can break something -# else. +# else. And Clang doesn't recognize gnu++03, only gnu++98. # using cxx.guess -cxx.std = ($cxx.id == 'gcc' || $cxx.id == 'clang' ? gnu++03 : 03) +cxx.std = ($cxx.id == 'gcc' || $cxx.id == 'clang' ? gnu++98 : 03) using cxx |