summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-27 05:14:30 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-02-27 05:14:30 +0000
commite3e2a2c7151b3b10c0093cb29d76953e1d4a7d72 (patch)
tree744b7903e1be84d5b645a7daad2641011e920183 /lib
parenteeea1b3883057364e49683a8d61930110879f19e (diff)
Makefile.in: verify-static-library
* Makefile.in (verify-static-library): separate from LIBRUBY_A. no check every times by default. * lib/mkmf.rb (try_link): remove debugging symbol directory after linking, instead of try_do. * lib/mkmf.rb (try_link): bccwin32 support has been removed long ago. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@57722 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/mkmf.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/mkmf.rb b/lib/mkmf.rb
index 533f3f85ce..42e39ca454 100644
--- a/lib/mkmf.rb
+++ b/lib/mkmf.rb
@@ -464,7 +464,6 @@ MSG
xsystem(command, *opts)
ensure
log_src(src)
- MakeMakefile.rm_rf "#{CONFTEST}.dSYM"
end
end
@@ -556,7 +555,8 @@ MSG
def try_link(src, opt="", *opts, &b)
try_link0(src, opt, *opts, &b)
ensure
- MakeMakefile.rm_f "#{CONFTEST}*", "c0x32*"
+ MakeMakefile.rm_f "#{CONFTEST}*"
+ MakeMakefile.rm_rf "#{CONFTEST}.dSYM"
end
# Returns whether or not the +src+ can be compiled as a C source. +opt+ is