• 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

修訂3458a83e89c4677b8caa6cb0c810b39aa5ba8a76 (tree)
時間2015-10-11 16:37:38
作者crimsonwoods <crimsonwoods.dev@gmai...>
Commitercrimsonwoods

Log Message

Some flags (-ffunction-sections and etc.) should be set by default for 'x86' architecture.

Change Summary

差異

--- a/tasks/toolchains/androidndk.rake
+++ b/tasks/toolchains/androidndk.rake
@@ -143,6 +143,8 @@ Set ANDROID_NDK_HOME environment variable or set :ndk_home parameter
143143 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)
144144 when /mips/
145145 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)
146+ when /x86/
147+ flags += %W(-ffunction-sections -funwind-tables -no-canonical-prefixes)
146148 end
147149 when :clang
148150 end