mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/mkmf.rb (configuration): set flags.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17058 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
fe54190f68
commit
ce29c17877
3 changed files with 12 additions and 0 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Jun 9 21:14:26 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* lib/mkmf.rb (configuration): set flags.
|
||||
|
||||
Mon Jun 9 21:09:02 2008 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* bootstraptest/test_knownbug.rb -> ./test_knownbug.rb: moved.
|
||||
|
|
|
@ -27,6 +27,10 @@ CC = @CC@
|
|||
OUTFLAG = @OUTFLAG@$(empty)
|
||||
COUTFLAG = @COUTFLAG@$(empty)
|
||||
CFLAGS = $(CCDLFLAGS) @CFLAGS@ @ARCH_FLAG@
|
||||
cflags = @cflags@
|
||||
optflags = @optflags@
|
||||
debugflags = @debugflags@
|
||||
warnflags = @warnflags@
|
||||
CCDLFLAGS = @CCDLFLAGS@
|
||||
INCFLAGS = -I. -I$(arch_hdrdir) -I$(hdrdir) -I$(top_srcdir)
|
||||
DEFS = @DEFS@
|
||||
|
|
|
@ -1345,6 +1345,10 @@ OUTFLAG = #{OUTFLAG}
|
|||
COUTFLAG = #{COUTFLAG}
|
||||
|
||||
RUBY_EXTCONF_H = #{$extconf_h}
|
||||
cflags = #{CONFIG['cflags']}
|
||||
optflags = #{CONFIG['optflags']}
|
||||
debugflags = #{CONFIG['debugflags']}
|
||||
warnflags = #{CONFIG['warnflags']}
|
||||
CFLAGS = #{$static ? '' : CONFIG['CCDLFLAGS']} #$CFLAGS #$ARCH_FLAG
|
||||
INCFLAGS = -I. #$INCFLAGS
|
||||
DEFS = #{CONFIG['DEFS']}
|
||||
|
|
Loading…
Reference in a new issue