You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
xremap/build_config.rb

22 lines
502 B
Ruby

8 years ago
MRuby::Build.new do |conf|
toolchain :gcc
8 years ago
conf.gembox 'default'
conf.gem File.expand_path(File.dirname(__FILE__))
8 years ago
conf.instance_eval do
# Allow showing backtrace.
@mrbc.compile_options += ' -g'
8 years ago
end
8 years ago
# Never support Visual C++.
# https://github.com/mruby/mruby/blob/1.2.0/CONTRIBUTING.md#comply-with-c99-isoiec-98991999
conf.cc.flags.first.reject! do |flag|
flag == '-Wdeclaration-after-statement'
end
8 years ago
conf.linker do |linker|
linker.libraries += %w(X11)
end
8 years ago
end