summaryrefslogtreecommitdiff
path: root/ext/json/parser/extconf.rb
blob: 4c3e56a5068d16f6628c4c5ef5a4f6d2884e3cfa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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

create_makefile 'json/ext/parser'