summaryrefslogtreecommitdiffhomepage
path: root/build_config.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2013-07-31 11:52:34 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2013-07-31 11:52:34 +0900
commit1b6b00e2d02db0c8a0e0460412932a62968c8835 (patch)
treec136709fa9cf5bc461378d21432ea7b57d87e76d /build_config.rb
parent029613bc5510e240a0e4c080ab9c03f56a6f7c02 (diff)
downloadmruby-1b6b00e2d02db0c8a0e0460412932a62968c8835.tar.gz
mruby-1b6b00e2d02db0c8a0e0460412932a62968c8835.zip
remove unnecessary spaces
Diffstat (limited to 'build_config.rb')
-rw-r--r--build_config.rb12
1 files changed, 6 insertions, 6 deletions
diff --git a/build_config.rb b/build_config.rb
index 8367f4ca5..fce424686 100644
--- a/build_config.rb
+++ b/build_config.rb
@@ -42,25 +42,25 @@ MRuby::Build.new do |conf|
# linker.option_library_path = '-L%s'
# linker.link_options = "%{flags} -o %{outfile} %{objs} %{libs}"
# end
-
+
# Archiver settings
# conf.archiver do |archiver|
# archiver.command = ENV['AR'] || 'ar'
# archiver.archive_options = 'rs %{outfile} %{objs}'
# end
-
+
# Parser generator settings
# conf.yacc do |yacc|
# yacc.command = ENV['YACC'] || 'bison'
# yacc.compile_options = '-o %{outfile} %{infile}'
# end
-
+
# gperf settings
# conf.gperf do |gperf|
# gperf.command = 'gperf'
# gperf.compile_options = '-L ANSI-C -C -p -j1 -i 1 -g -o -t -N mrb_reserved_word -k"1,3,$" %{infile} > %{outfile}'
# end
-
+
# file extensions
# conf.exts do |exts|
# exts.object = '.o'
@@ -75,12 +75,12 @@ end
# Define cross build settings
# MRuby::CrossBuild.new('32bit') do |conf|
# toolchain :gcc
-#
+#
# conf.cc.flags << "-m32"
# conf.linker.flags << "-m32"
#
# conf.build_mrbtest_lib_only
-#
+#
# conf.gem 'examples/mrbgems/c_and_ruby_extension_example'
#
# conf.test_runner.command = 'env'