add CFLAGS as a fallback from CXXFLAGS; ref #1594

parent 33698d73
...@@ -11,7 +11,7 @@ MRuby::Toolchain.new(:gcc) do |conf| ...@@ -11,7 +11,7 @@ MRuby::Toolchain.new(:gcc) do |conf|
[conf.cxx].each do |cxx| [conf.cxx].each do |cxx|
cxx.command = ENV['CXX'] || 'g++' cxx.command = ENV['CXX'] || 'g++'
cxx.flags = [ENV['CXXFLAGS'] || %w(-g -O3 -Wall -Werror-implicit-function-declaration)] cxx.flags = [ENV['CXXFLAGS'] || ENV['CFLAGS'] || %w(-g -O3 -Wall -Werror-implicit-function-declaration)]
cxx.include_paths = ["#{MRUBY_ROOT}/include"] cxx.include_paths = ["#{MRUBY_ROOT}/include"]
cxx.defines = %w(DISABLE_GEMS) cxx.defines = %w(DISABLE_GEMS)
cxx.option_include_path = '-I%s' cxx.option_include_path = '-I%s'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment