mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* configure.in (CFLAGS, CXXFLAGS): moved after warnflags.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22928 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
bc34d16363
commit
d202fd4f97
2 changed files with 7 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Fri Mar 13 18:58:04 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
|
* configure.in (CFLAGS, CXXFLAGS): moved after warnflags.
|
||||||
|
|
||||||
Fri Mar 13 18:10:06 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
Fri Mar 13 18:10:06 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||||
|
|
||||||
* vm_eval.c (rb_throw_obj): inverted call flow. [ruby-core:22872]
|
* vm_eval.c (rb_throw_obj): inverted call flow. [ruby-core:22872]
|
||||||
|
|
|
@ -221,8 +221,6 @@ if test "$GCC" = yes; then
|
||||||
else
|
else
|
||||||
linker_flag=
|
linker_flag=
|
||||||
fi
|
fi
|
||||||
CFLAGS="${CFLAGS} `eval echo $cflags`"
|
|
||||||
CXXFLAGS="${CXXFLAGS} `eval echo $cxxflags`"
|
|
||||||
|
|
||||||
RUBY_PROG_GNU_LD
|
RUBY_PROG_GNU_LD
|
||||||
RUBY_CPPOUTFILE
|
RUBY_CPPOUTFILE
|
||||||
|
@ -335,6 +333,9 @@ if test "$GCC:${warnflags+set}:no" = yes::no; then
|
||||||
warnflags="-Wall -Wno-unused-parameter -Wno-parentheses ${warnflags+$warnflags }-Wpointer-arith -Wwrite-strings"
|
warnflags="-Wall -Wno-unused-parameter -Wno-parentheses ${warnflags+$warnflags }-Wpointer-arith -Wwrite-strings"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
CFLAGS="${CFLAGS} `eval echo $cflags`"
|
||||||
|
CXXFLAGS="${CXXFLAGS} `eval echo $cxxflags`"
|
||||||
|
|
||||||
dnl check for large file stuff
|
dnl check for large file stuff
|
||||||
mv confdefs.h confdefs1.h
|
mv confdefs.h confdefs1.h
|
||||||
: > confdefs.h
|
: > confdefs.h
|
||||||
|
|
Loading…
Reference in a new issue