summaryrefslogtreecommitdiffhomepage
path: root/build_config/no-float.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2021-06-22 16:33:42 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2021-06-22 16:36:26 +0900
commit388bcb15e83af2e2eb1d9d5b9b20c66b05b7d8ef (patch)
tree2fa9e7940bd0a81e860adb5893297a9f4373884f /build_config/no-float.rb
parentfc6210763ca6c440e1992700df07948fe6ae97b4 (diff)
downloadmruby-388bcb15e83af2e2eb1d9d5b9b20c66b05b7d8ef.tar.gz
mruby-388bcb15e83af2e2eb1d9d5b9b20c66b05b7d8ef.zip
Rename two files for consistency; close #5488
* android_arm64-v8a.rb -> android_arm64_v8a.rb * no-float.rb -> host-nofloat.rb
Diffstat (limited to 'build_config/no-float.rb')
-rw-r--r--build_config/no-float.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/build_config/no-float.rb b/build_config/no-float.rb
deleted file mode 100644
index 977bf4e12..000000000
--- a/build_config/no-float.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-MRuby::Build.new do |conf|
- # load specific toolchain settings
- toolchain :gcc
-
- # include the GEM box
- conf.gembox "stdlib"
- conf.gembox "stdlib-ext"
- conf.gembox "stdlib-io"
- conf.gembox "metaprog"
-
- conf.gem :core => 'mruby-bin-mruby'
- conf.gem :core => 'mruby-bin-mirb'
-
- # Add configuration
- conf.compilers.each do |c|
- c.defines << "MRB_NO_FLOAT"
- end
-
- conf.enable_debug
- conf.enable_test
- conf.enable_bintest
-end