Merge pull request #4122 from lightmare/prevent-duplicate-flags
scons: prevent duplication of linker flags
This commit is contained in:
commit
3be9ce8fa0
1 changed files with 5 additions and 3 deletions
|
@ -1423,14 +1423,16 @@ if not preconfigured:
|
||||||
env.Append(LINKFLAGS = DEFAULT_CXX14_LINKFLAGS)
|
env.Append(LINKFLAGS = DEFAULT_CXX14_LINKFLAGS)
|
||||||
|
|
||||||
custom_ldflags = env.ParseFlags(env['CUSTOM_LDFLAGS'])
|
custom_ldflags = env.ParseFlags(env['CUSTOM_LDFLAGS'])
|
||||||
# ParseFlags puts everything it does not recognize into CCFLAGS,
|
|
||||||
# but let's assume the user knows better, put those in LINKFLAGS
|
|
||||||
env.Append(LINKFLAGS = custom_ldflags.pop('CCFLAGS'))
|
|
||||||
env.Append(LINKFLAGS = custom_ldflags.pop('LINKFLAGS'),
|
env.Append(LINKFLAGS = custom_ldflags.pop('LINKFLAGS'),
|
||||||
LIBS = custom_ldflags.pop('LIBS'))
|
LIBS = custom_ldflags.pop('LIBS'))
|
||||||
env.AppendUnique(FRAMEWORKS = custom_ldflags.pop('FRAMEWORKS'),
|
env.AppendUnique(FRAMEWORKS = custom_ldflags.pop('FRAMEWORKS'),
|
||||||
LIBPATH = custom_ldflags.pop('LIBPATH'),
|
LIBPATH = custom_ldflags.pop('LIBPATH'),
|
||||||
RPATH = custom_ldflags.pop('RPATH'))
|
RPATH = custom_ldflags.pop('RPATH'))
|
||||||
|
# ParseFlags puts everything it does not recognize into CCFLAGS,
|
||||||
|
# but let's assume the user knows better: add those to LINKFLAGS.
|
||||||
|
# In order to prevent duplication of flags which ParseFlags puts
|
||||||
|
# into both CCFLAGS and LINKFLAGS, call AppendUnique.
|
||||||
|
env.AppendUnique(LINKFLAGS = custom_ldflags.pop('CCFLAGS'))
|
||||||
|
|
||||||
invalid_ldflags = {k:v for k,v in custom_ldflags.items() if v}
|
invalid_ldflags = {k:v for k,v in custom_ldflags.items() if v}
|
||||||
if invalid_ldflags:
|
if invalid_ldflags:
|
||||||
|
|
Loading…
Reference in a new issue