From fea2b2538d7bfae9223f0748dc7b46c95c863526 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 31 Aug 2008 09:22:06 +0000 Subject: [PATCH] * lib/mkmf.rb (have_devel?): checks if the compiler works. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@18995 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ lib/mkmf.rb | 25 +++++++++++++++---------- 2 files changed, 19 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2198bd6812..08a524dd54 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Sun Aug 31 18:22:04 2008 Nobuyoshi Nakada + + * lib/mkmf.rb (have_devel?): checks if the compiler works. + Sun Aug 31 18:02:41 2008 Yuki Sonoda (Yugui) * Temporarily uses git://github.com/yugui/rubyspec.git diff --git a/lib/mkmf.rb b/lib/mkmf.rb index a403fa81d6..6a95395b97 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -340,7 +340,21 @@ def create_tmpsrc(src) src end +def have_devel? + unless defined? $have_devel + $have_devel = true + $have_devel = try_link(MAIN_DOES_NOTHING) + end + $have_devel +end + def try_do(src, command, &b) + unless have_devel? + raise < /*top*/ int conftest_const = (int)(#{const}); @@ -506,7 +518,6 @@ end def try_func(func, libs, headers = nil, &b) headers = cpp_include(headers) try_link(<<"SRC", libs, &b) or try_link(<<"SRC", libs, &b) -#{COMMON_HEADERS} #{headers} /*top*/ #{MAIN_DOES_NOTHING} @@ -522,7 +533,6 @@ end def try_var(var, headers = nil, &b) headers = cpp_include(headers) try_compile(<<"SRC", &b) -#{COMMON_HEADERS} #{headers} /*top*/ #{MAIN_DOES_NOTHING} @@ -840,7 +850,6 @@ end def have_struct_member(type, member, headers = nil, &b) checking_for checking_message("#{type}.#{member}", headers) do if try_compile(<<"SRC", &b) -#{COMMON_HEADERS} #{cpp_include(headers)} /*top*/ #{MAIN_DOES_NOTHING} @@ -857,7 +866,6 @@ end def try_type(type, headers = nil, opt = "", &b) if try_compile(<<"SRC", opt, &b) -#{COMMON_HEADERS} #{cpp_include(headers)} /*top*/ typedef #{type} conftest_type; @@ -912,7 +920,6 @@ end def try_const(const, headers = nil, opt = "", &b) const, type = *const if try_compile(<<"SRC", opt, &b) -#{COMMON_HEADERS} #{cpp_include(headers)} /*top*/ typedef #{type || 'int'} conftest_type; @@ -977,7 +984,6 @@ end # pointer. def scalar_ptr_type?(type, member = nil, headers = nil, &b) try_compile(<<"SRC", &b) # pointer -#{COMMON_HEADERS} #{cpp_include(headers)} /*top*/ volatile #{type} conftestval; @@ -990,7 +996,6 @@ end # pointer. def scalar_type?(type, member = nil, headers = nil, &b) try_compile(<<"SRC", &b) # pointer -#{COMMON_HEADERS} #{cpp_include(headers)} /*top*/ volatile #{type} conftestval;