From dc2eeb3741fb3435707b1dc8a78a3e88d8836314 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Fri, 24 Nov 2017 17:47:59 +0200 Subject: Various tweaks --- build/root.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build') 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 -- cgit v1.1