mrubyを超漢字で動作させる
修訂 | 3458a83e89c4677b8caa6cb0c810b39aa5ba8a76 (tree) |
---|---|
時間 | 2015-10-11 16:37:38 |
作者 | crimsonwoods <crimsonwoods.dev@gmai...> |
Commiter | crimsonwoods |
Some flags (-ffunction-sections and etc.) should be set by default for 'x86' architecture.
@@ -143,6 +143,8 @@ Set ANDROID_NDK_HOME environment variable or set :ndk_home parameter | ||
143 | 143 | 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) |
144 | 144 | when /mips/ |
145 | 145 | 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) | |
146 | 148 | end |
147 | 149 | when :clang |
148 | 150 | end |