forked from platformio/platformio-core
Combine ASFLAGS and CCFLAGS in a proper way
This commit is contained in:
@ -33,7 +33,7 @@ env.Replace(
|
|||||||
|
|
||||||
ASFLAGS=[
|
ASFLAGS=[
|
||||||
"-x", "assembler-with-cpp",
|
"-x", "assembler-with-cpp",
|
||||||
"$CCFLAGS"
|
env.subst("$CCFLAGS")
|
||||||
],
|
],
|
||||||
|
|
||||||
CCFLAGS=[
|
CCFLAGS=[
|
||||||
|
@ -33,7 +33,7 @@ env.Replace(
|
|||||||
|
|
||||||
ASFLAGS=[
|
ASFLAGS=[
|
||||||
"-x", "assembler-with-cpp",
|
"-x", "assembler-with-cpp",
|
||||||
"$CCFLAGS"
|
env.subst("$CCFLAGS")
|
||||||
],
|
],
|
||||||
|
|
||||||
CCFLAGS=[
|
CCFLAGS=[
|
||||||
|
@ -66,7 +66,7 @@ env.Replace(
|
|||||||
|
|
||||||
ASFLAGS=[
|
ASFLAGS=[
|
||||||
"-x", "assembler-with-cpp",
|
"-x", "assembler-with-cpp",
|
||||||
"$CCFLAGS"
|
env.subst("$CCFLAGS")
|
||||||
],
|
],
|
||||||
|
|
||||||
CFLAGS=[
|
CFLAGS=[
|
||||||
|
@ -38,7 +38,7 @@ env.Replace(
|
|||||||
|
|
||||||
ASFLAGS=[
|
ASFLAGS=[
|
||||||
"-x", "assembler-with-cpp",
|
"-x", "assembler-with-cpp",
|
||||||
"$CCFLAGS"
|
env.subst("$CCFLAGS")
|
||||||
],
|
],
|
||||||
|
|
||||||
CCFLAGS=[
|
CCFLAGS=[
|
||||||
|
Reference in New Issue
Block a user