Fix flags for ARM GN build.
I accidentally used underscores which gives undefined option errors. TBR=scottmg Review URL: https://codereview.chromium.org/135733005 git-svn-id: http://src.chromium.org/svn/trunk/src/build@244838 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
Родитель
1aaf2ea193
Коммит
e73f1bf025
|
@ -110,7 +110,7 @@ config("compiler") {
|
|||
cflags += [
|
||||
"-march=$arm_arch",
|
||||
"-mfpu=$arm_fpu",
|
||||
"-mfloat_abi=$arm_float_abi",
|
||||
"-mfloat-abi=$arm_float_abi",
|
||||
]
|
||||
if (arm_tune != "") {
|
||||
cflags += "-mtune=$arm_tune"
|
||||
|
@ -118,7 +118,7 @@ config("compiler") {
|
|||
if (arm_use_thumb) {
|
||||
cflags += [ "-mthumb" ]
|
||||
if (is_android) {
|
||||
cflags += [ "-mthumb_interwork" ]
|
||||
cflags += [ "-mthumb-interwork" ]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче