diff options
| author | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-03-22 13:23:36 +0000 |
|---|---|---|
| committer | eban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-03-22 13:23:36 +0000 |
| commit | 5b22b4c42c0ebbe18d63911daa2470722271e77b (patch) | |
| tree | f7d5474e56dd9f40ce534206d8da69d17b265484 | |
| parent | 65f449f3feb54e3a62df9505d8da0fd66cad7fd2 (diff) | |
| download | ruby-5b22b4c42c0ebbe18d63911daa2470722271e77b.tar.gz ruby-5b22b4c42c0ebbe18d63911daa2470722271e77b.tar.xz ruby-5b22b4c42c0ebbe18d63911daa2470722271e77b.zip | |
* ext/Win32API/extconf.rb: add -fno-omit-frame-pointer.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1277 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | ext/Win32API/extconf.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu Mar 22 22:15:45 2001 WATANABE Hirofumi <eban@ruby-lang.org> + + * ext/Win32API/extconf.rb: add -fno-omit-frame-pointer. + Thu Mar 22 18:17:36 2001 Yukihiro Matsumoto <matz@ruby-lang.org> * eval.c (rb_mod_nesting): should not include Object at the diff --git a/ext/Win32API/extconf.rb b/ext/Win32API/extconf.rb index f8d78e146..5e42f6255 100644 --- a/ext/Win32API/extconf.rb +++ b/ext/Win32API/extconf.rb @@ -1,6 +1,6 @@ case RUBY_PLATFORM when /cygwin/,/mingw/ - $CFLAGS = "-fno-defer-pop" + $CFLAGS = "-fno-defer-pop -fno-omit-frame-pointer" create_makefile("Win32API") when /win32/ create_makefile("Win32API") |
