From 0fc4d3d69766bdb2fc14eeeda73e2daacac24972 Mon Sep 17 00:00:00 2001 From: eban Date: Mon, 3 Jul 2000 09:37:17 +0000 Subject: * lib/mkmf.rb: use null device if it exists for cross-compiling. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@808 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/mkmf.rb | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'lib') diff --git a/lib/mkmf.rb b/lib/mkmf.rb index 1f9373a22..d09b85b87 100644 --- a/lib/mkmf.rb +++ b/lib/mkmf.rb @@ -33,11 +33,15 @@ if RUBY_PLATFORM == "m68k-human" elsif RUBY_PLATFORM =~ /-nextstep|-rhapsody/ CFLAGS.gsub!( /-arch\s\w*/, '' ) end -if /win32|djgpp|mingw32|m68k-human|i386-os2_emx/i =~ RUBY_PLATFORM - $null = open("nul", "w") + +if FileTest.readable? 'nul' + $null = open('nul', 'w') +elsif FileTest.readable? '/dev/null' + $null = open('/dev/null', 'w') else - $null = open("/dev/null", "w") + $null = open('test.log', 'w') end + LINK = "#{CONFIG['CC']} -o conftest -I#{$hdrdir} #{CFLAGS} -I#{CONFIG['includedir']} %s #{CONFIG['LDFLAGS']} %s conftest.c %s %s #{CONFIG['LIBS']}" CPP = "#{CONFIG['CPP']} -E -I#{$hdrdir} #{CFLAGS} -I#{CONFIG['includedir']} %s %s conftest.c" -- cgit