24 lines
529 B
Plaintext
24 lines
529 B
Plaintext
#
|
|
# common 64-bit IPA compiler options. MI defs must be constant
|
|
#
|
|
|
|
# RPROM code reduction effort
|
|
#
|
|
# included by MIPS64defs based on $(COMPILATION_MODEL_SAOPT)==IPA
|
|
#
|
|
|
|
# create IPA code reduction results file at targe directory (i.e. rprom.ipa.t)
|
|
IPA_DBG_OPTS=-ipa -Wl,-tt1:1
|
|
IPA_DBG_LD_OPTS=-ipa -tt1:1
|
|
|
|
# IPA options
|
|
#
|
|
IPA_OPTS=-IPA:inline=off:cprop=off:cgi=off:autognum=off
|
|
|
|
# for .c, .s, and loader
|
|
#
|
|
IPA_COPTS=$(IPA_OPTS) $(IPA_DBG_OPTS)
|
|
IPA_ASOPTS=$(IPA_OPTS) $(IPA_DBG_OPTS)
|
|
IPA_LDOPTS=$(IPA_OPTS) $(IPA_DBG_LD_OPTS)
|
|
|