Move unconditional test compile and link flags into their configuration functions.
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@224674 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4778eed34f
commit
814b625303
@ -213,8 +213,8 @@ class Configuration(object):
|
||||
self.obj_root = None
|
||||
self.library_root = None
|
||||
self.env = {}
|
||||
self.compile_flags = ['-nostdinc++']
|
||||
self.link_flags = ['-nodefaultlibs']
|
||||
self.compile_flags = []
|
||||
self.link_flags = []
|
||||
self.use_system_lib = False
|
||||
self.use_clang_verify = False
|
||||
self.use_ccache = False
|
||||
@ -451,6 +451,7 @@ class Configuration(object):
|
||||
|
||||
def configure_compile_flags(self):
|
||||
# Configure extra compiler flags.
|
||||
self.compile_flags += ['-nostdinc++']
|
||||
self.compile_flags += ['-I' + self.src_root + '/include',
|
||||
'-I' + self.src_root + '/test/support']
|
||||
if sys.platform.startswith('linux'):
|
||||
@ -485,6 +486,7 @@ class Configuration(object):
|
||||
|
||||
|
||||
def configure_link_flags(self):
|
||||
self.link_flags += ['-nodefaultlibs']
|
||||
# Configure library search paths
|
||||
abi_library_path = self.get_lit_conf('abi_library_path', '')
|
||||
if not self.use_system_lib:
|
||||
|
Loading…
x
Reference in New Issue
Block a user