Skip to content
Snippets Groups Projects
icc.opts 424 B
Newer Older
  • Learn to ignore specific revisions
  • # $Id$
    
    # options for icc
    # remember to run ./autogen.sh after changing these values!
    
    # name of compiler binaries
    COMP="icc"
    
    Adrian Burri's avatar
    Adrian Burri committed
    CXXCOMP="icpc"
    
    Adrian Burri's avatar
    Adrian Burri committed
    FLAGS="-wn2 -DHAVE_ICC -D__interface=myinterface"
    LDFLAGS="-static"
    
    
    # additional flags for debugging
    DEBUGFLAGS="-O0 -g"
    
    Adrian Burri's avatar
    Adrian Burri committed
    #DEBUGFLAGS="-O3 -DNDEBUG"
    
    
    # additional flags for optimization
    
    Adrian Burri's avatar
    Adrian Burri committed
    OPTIMFLAGS="-O3 -Ob2 -unroll"
    #OPTIMFLAGS="-O3 -Ob2 -unroll -DNDEBUG"