From 6af3f0448fe8b3bf3472504a3ee547a816ab381a Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Mon, 23 Apr 2012 00:22:12 -0500 Subject: More support for building with Clang --- acprep | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'acprep') diff --git a/acprep b/acprep index 1eccef64..fa61ba98 100755 --- a/acprep +++ b/acprep @@ -1016,8 +1016,14 @@ class PrepareBuild(CommandLineApp): self.envvars['PYTHON_HOME'] = '/opt/local' if self.options.use_clang: - self.boost_inc_ident = "clang" - self.boost_lib_ident = "clang-darwin28" + self.log.info('Setting up for using Clang') + + self.boost_inc_ident = "clang31" + self.boost_lib_ident = "clang-darwin42" + + #self.CXXFLAGS.append('-std=c++11') + #self.CXXFLAGS.append('-stdlib=libc++') + #self.LDFLAGS.append('-stdlib=libc++') global search_prefixes search_prefixes = [ '/opt/local', '/usr/local', '/sw', '/usr' ] -- cgit v1.2.3