• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

mrubyを超漢字で動作させる


Commit MetaInfo

修訂abaad5c0d655579690e7f7852d89a47a9403ec5a (tree)
時間2015-10-11 16:32:50
作者crimsonwoods <crimsonwoods.dev@gmai...>
Commitercrimsonwoods

Log Message

Some flags (-fpic and etc.) should be set by default for 'armeabi-v7a' and 'armeabi' architecture.

Change Summary

差異

--- a/tasks/toolchains/androidndk.rake
+++ b/tasks/toolchains/androidndk.rake
@@ -134,9 +134,9 @@ Set ANDROID_NDK_HOME environment variable or set :ndk_home parameter
134134 when /arm64/
135135 flags += %W(-fpic -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes)
136136 when 'armeabi-v7a'
137- flags += %W(-march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16)
137+ flags += %W(-fpic -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16)
138138 when /arm/
139- flags += %W(-march=armv5te -mtune=xscale -msoft-float)
139+ flags += %W(-fpic -ffunction-sections -funwind-tables -fstack-protector-strong -no-canonical-prefixes -march=armv5te -mtune=xscale -msoft-float)
140140 when /mips64/
141141 flags += %W(-fpic -fno-strict-aliasing -finline-functions -ffunction-sections -funwind-tables -fmessage-length=0 -fno-inline-functions-called-once -fgcse-after-reload -frerun-cse-after-loop -frename-registers -no-canonical-prefixes)
142142 when /mips/