From 6d74458037fd11612af429f95482a14cfa7d1381 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 2 Dec 2010 01:12:41 +0000 Subject: * ext/json/generator/extconf.rb: remove the lines which set -O3 when -O option is not set. Note that -O3 doesn't always exist. * ext/json/parser/extconf.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30011 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/json/parser/extconf.rb | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'ext/json/parser/extconf.rb') diff --git a/ext/json/parser/extconf.rb b/ext/json/parser/extconf.rb index f61fc94660..64d1716a7a 100644 --- a/ext/json/parser/extconf.rb +++ b/ext/json/parser/extconf.rb @@ -1,15 +1,5 @@ require 'mkmf' require 'rbconfig' -unless $CFLAGS.gsub!(/ -O[\dsz]?/, ' -O3') - $CFLAGS << ' -O3' -end -if CONFIG['CC'] =~ /gcc/ - $CFLAGS << ' -Wall' - #unless $CFLAGS.gsub!(/ -O[\dsz]?/, ' -O0 -ggdb') - # $CFLAGS << ' -O0 -ggdb' - #end -end - have_header("re.h") create_makefile 'json/ext/parser' -- cgit v1.2.3