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:
brettw@chromium.org 2014-01-15 06:06:22 +00:00
Родитель 1aaf2ea193
Коммит e73f1bf025
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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" ]
}
}
}