diff options
| author | crimsonwoods <[email protected]> | 2015-10-11 17:35:36 +0900 |
|---|---|---|
| committer | crimsonwoods <[email protected]> | 2015-10-11 17:35:36 +0900 |
| commit | 7b65f394e65df4564e219f225064a83355220023 (patch) | |
| tree | ff83afe65fb34dee27626a5626b6392b05ea2dff /tasks | |
| parent | 61e4d1e6f0df8719595434d3472d0ecee03dc80a (diff) | |
| download | mruby-7b65f394e65df4564e219f225064a83355220023.tar.gz mruby-7b65f394e65df4564e219f225064a83355220023.zip | |
Remove unnecessary cases.
'mips64' can integrate into 'mips'.
'x86_64' is the same as 'mips64'.
Diffstat (limited to 'tasks')
| -rw-r--r-- | tasks/toolchains/androidndk.rake | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/tasks/toolchains/androidndk.rake b/tasks/toolchains/androidndk.rake index 961aaa39c..1ffabc928 100644 --- a/tasks/toolchains/androidndk.rake +++ b/tasks/toolchains/androidndk.rake @@ -144,12 +144,8 @@ Set ANDROID_NDK_HOME environment variable or set :ndk_home parameter flags += %W(-fpic -fstack-protector-strong -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16) when /arm/ flags += %W(-fpic -fstack-protector-strong -march=armv5te -mtune=xscale -msoft-float) - when /mips64/ - flags += %W(-fpic -fno-strict-aliasing -finline-functions -fmessage-length=0 -fno-inline-functions-called-once -fgcse-after-reload -frerun-cse-after-loop -frename-registers) when /mips/ flags += %W(-fpic -fno-strict-aliasing -finline-functions -fmessage-length=0 -fno-inline-functions-called-once -fgcse-after-reload -frerun-cse-after-loop -frename-registers) - when /x86_64/ - flags += %W(-fstack-protector-strong) when /x86/ flags += %W(-fstack-protector-strong) end |
