23 lines
449 B
Text
23 lines
449 B
Text
|
#
|
||
|
#$Id$
|
||
|
#
|
||
|
#####
|
||
|
#
|
||
|
# MODE O3pipe configuration
|
||
|
#
|
||
|
# Usage: - Apply optimization string to each variable
|
||
|
# - "unset" will cause the variable to be not set
|
||
|
# instead of just set to null.
|
||
|
#
|
||
|
# Use this as an example for cunstomized modes
|
||
|
#
|
||
|
#####
|
||
|
|
||
|
CFLAGS_O3pipe="-O3 -pipe"
|
||
|
CXXFLAGS_O3pipe=$CFLAGS_O3pipe
|
||
|
LDFLAGS_O3pipe="unset"
|
||
|
|
||
|
OTHER_CFLAGS_O3pipe=$CFLAGS_O3pipe
|
||
|
OTHER_CXXFLAGS_O3pipe=$CXXFLAGS_O3pipe
|
||
|
OTHER_LDFLAGS_O3pipe=$LDFLAGS_O3pipe
|