mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 08:43:09 +00:00
Revert "Fix profile build for gcc on Mac OSX"
Seems to be a performance regression for standard build. For SF6 people compiling on Mac OSX using profile-build option just need to make necessary adjustments manually... No functional change Resolves #223
This commit is contained in:
parent
8ebf30d44a
commit
ec36b8dea9
1 changed files with 2 additions and 2 deletions
|
@ -447,7 +447,7 @@ gcc-profile-prepare:
|
||||||
|
|
||||||
gcc-profile-make:
|
gcc-profile-make:
|
||||||
$(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
|
$(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
|
||||||
EXTRACXXFLAGS='-fprofile-generate' \
|
EXTRACXXFLAGS='-fprofile-arcs' \
|
||||||
EXTRALDFLAGS='-lgcov' \
|
EXTRALDFLAGS='-lgcov' \
|
||||||
all
|
all
|
||||||
|
|
||||||
|
@ -456,7 +456,7 @@ gcc-profile-use:
|
||||||
# "internal compiler error" for gcc versions 4.7.x
|
# "internal compiler error" for gcc versions 4.7.x
|
||||||
@rm -f ucioption.gc*
|
@rm -f ucioption.gc*
|
||||||
$(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
|
$(MAKE) ARCH=$(ARCH) COMP=$(COMP) \
|
||||||
EXTRACXXFLAGS='-fprofile-use' \
|
EXTRACXXFLAGS='-fbranch-probabilities' \
|
||||||
EXTRALDFLAGS='-lgcov' \
|
EXTRALDFLAGS='-lgcov' \
|
||||||
all
|
all
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue