Help for this page

Select Code to Download


  1. or download this
        CCFLAGS => '-Wall -g -O2 --std=gnu99',
    
  2. or download this
    $ $ perl -MConfig -E 'say $Config{ccflags}'
    -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/loc
    +al/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOUR
    +CE=2
    
  3. or download this
    use Config;
    
    ...
       CCFLAGS => "--std=gnu99 $Config{ccflags}", # if that works, add oth
    +er stuff, like -g and -Wall...
    ...