Combine ASFLAGS and CCFLAGS in a proper way

This commit is contained in:
Valeriy Koval
2016-03-03 20:05:51 +02:00
parent 1e3e3dd999
commit 1332413f63
4 changed files with 4 additions and 4 deletions

View File

@ -33,7 +33,7 @@ env.Replace(
ASFLAGS=[ ASFLAGS=[
"-x", "assembler-with-cpp", "-x", "assembler-with-cpp",
"$CCFLAGS" env.subst("$CCFLAGS")
], ],
CCFLAGS=[ CCFLAGS=[

View File

@ -33,7 +33,7 @@ env.Replace(
ASFLAGS=[ ASFLAGS=[
"-x", "assembler-with-cpp", "-x", "assembler-with-cpp",
"$CCFLAGS" env.subst("$CCFLAGS")
], ],
CCFLAGS=[ CCFLAGS=[

View File

@ -66,7 +66,7 @@ env.Replace(
ASFLAGS=[ ASFLAGS=[
"-x", "assembler-with-cpp", "-x", "assembler-with-cpp",
"$CCFLAGS" env.subst("$CCFLAGS")
], ],
CFLAGS=[ CFLAGS=[

View File

@ -38,7 +38,7 @@ env.Replace(
ASFLAGS=[ ASFLAGS=[
"-x", "assembler-with-cpp", "-x", "assembler-with-cpp",
"$CCFLAGS" env.subst("$CCFLAGS")
], ],
CCFLAGS=[ CCFLAGS=[