summaryrefslogtreecommitdiffhomepage
path: root/tasks/mruby_build.rake
diff options
context:
space:
mode:
authortake_cheeze <[email protected]>2014-03-02 04:30:06 +0900
committertake_cheeze <[email protected]>2014-03-02 04:30:06 +0900
commit6de1c22d9954ba4282aac6e4efa4b491626d4565 (patch)
treebb8356c66620b0d2dac88e545656a19920e2893d /tasks/mruby_build.rake
parent9968af45709da34d923569cd7b2329e11416c8b8 (diff)
downloadmruby-6de1c22d9954ba4282aac6e4efa4b491626d4565.tar.gz
mruby-6de1c22d9954ba4282aac6e4efa4b491626d4565.zip
use c++ compiler to link when c++ abi is enabled
Diffstat (limited to 'tasks/mruby_build.rake')
-rw-r--r--tasks/mruby_build.rake1
1 files changed, 1 insertions, 0 deletions
diff --git a/tasks/mruby_build.rake b/tasks/mruby_build.rake
index 3c0a67179..c65ad4c20 100644
--- a/tasks/mruby_build.rake
+++ b/tasks/mruby_build.rake
@@ -102,6 +102,7 @@ module MRuby
def enable_cxx_abi
return if @cxx_abi_enabled
compilers.each { |c| c.defines += %w(MRB_ENABLE_CXX_EXCEPTION) }
+ linker.command = cxx.command
@cxx_abi_enabled = true
end