Skip to content

Commit

Permalink
Switch armv7 setting to arm_version==7 in v8 gyp files
Browse files Browse the repository at this point in the history
BUG=chromium:234135
LOG=Y
R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/98543008

Patch from Mostyn Bramley-Moore <mostynb@opera.com>.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18297 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
  • Loading branch information
jkummerow@chromium.org committed Dec 11, 2013
1 parent 5bc64b9 commit 7967a19
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 13 deletions.
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,17 @@ ifeq ($(deprecationwarnings), on)
GYPFLAGS += -Dv8_deprecation_warnings=1
endif
# arm specific flags.
# armv7=false/true
# arm_version=<number | "default">
ifneq ($(strip $(arm_version)),)
GYPFLAGS += -Darm_version=$(arm_version)
else
# Deprecated (use arm_version instead): armv7=false/true
ifeq ($(armv7), false)
GYPFLAGS += -Darmv7=0
GYPFLAGS += -Darm_version=6
else
ifeq ($(armv7), true)
GYPFLAGS += -Darmv7=1
GYPFLAGS += -Darm_version=7
endif
endif
endif
# vfp2=off. Deprecated, use armfpu=
Expand Down
6 changes: 3 additions & 3 deletions build/android.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@
'-Wl,--icf=safe',
],
}],
['target_arch=="arm" and armv7==1', {
['target_arch=="arm" and arm_version==7', {
'cflags': [
'-march=armv7-a',
'-mtune=cortex-a8',
Expand All @@ -164,12 +164,12 @@
'-I<(android_stlport_include)',
],
'conditions': [
['target_arch=="arm" and armv7==1', {
['target_arch=="arm" and arm_version==7', {
'ldflags': [
'-L<(android_stlport_libs)/armeabi-v7a',
],
}],
['target_arch=="arm" and armv7==0', {
['target_arch=="arm" and arm_version < 7', {
'ldflags': [
'-L<(android_stlport_libs)/armeabi',
],
Expand Down
2 changes: 1 addition & 1 deletion build/standalone.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
}],
],
# Default ARM variable settings.
'armv7%': 'default',
'arm_version%': 'default',
'arm_neon%': 0,
'arm_fpu%': 'vfpv3',
'arm_float_abi%': 'default',
Expand Down
12 changes: 6 additions & 6 deletions build/toolchain.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,10 @@
'conditions': [
['armcompiler=="yes"', {
'conditions': [
[ 'armv7==1', {
[ 'arm_version==7', {
'cflags': ['-march=armv7-a',],
}],
[ 'armv7==1 or armv7=="default"', {
[ 'arm_version==7 or arm_version=="default"', {
'conditions': [
[ 'arm_neon==1', {
'cflags': ['-mfpu=neon',],
Expand Down Expand Up @@ -127,7 +127,7 @@
}, {
# armcompiler=="no"
'conditions': [
[ 'armv7==1 or armv7=="default"', {
[ 'arm_version==7 or arm_version=="default"', {
'defines': [
'CAN_USE_ARMV7_INSTRUCTIONS=1',
],
Expand Down Expand Up @@ -180,10 +180,10 @@
'conditions': [
['armcompiler=="yes"', {
'conditions': [
[ 'armv7==1', {
[ 'arm_version==7', {
'cflags': ['-march=armv7-a',],
}],
[ 'armv7==1 or armv7=="default"', {
[ 'arm_version==7 or arm_version=="default"', {
'conditions': [
[ 'arm_neon==1', {
'cflags': ['-mfpu=neon',],
Expand Down Expand Up @@ -215,7 +215,7 @@
}, {
# armcompiler=="no"
'conditions': [
[ 'armv7==1 or armv7=="default"', {
[ 'arm_version==7 or arm_version=="default"', {
'defines': [
'CAN_USE_ARMV7_INSTRUCTIONS=1',
],
Expand Down

0 comments on commit 7967a19

Please sign in to comment.