diff options
author | Matthias Klose <doko@ubuntu.com> | 2012-06-27 12:13:33 (GMT) |
---|---|---|
committer | Matthias Klose <doko@ubuntu.com> | 2012-06-27 12:13:33 (GMT) |
commit | 39b1e5dff3e28aa01f6c43a3a73ea17bfbe14d48 (patch) | |
tree | d4a1b7705bcc83398e24a991a49b6b9f28b42eb7 | |
parent | 9facaf4f6522a9c85af27903a4ab9f015554f61e (diff) | |
download | cpython-39b1e5dff3e28aa01f6c43a3a73ea17bfbe14d48.zip cpython-39b1e5dff3e28aa01f6c43a3a73ea17bfbe14d48.tar.gz cpython-39b1e5dff3e28aa01f6c43a3a73ea17bfbe14d48.tar.bz2 |
build_all_use_profile: Build using -fprofile-correction to automatically
correct inconsistent profiles for multi-threaded programs.
-rw-r--r-- | Makefile.pre.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index bfa818b..88f6967 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -448,7 +448,7 @@ run_profile_task: $(RUNSHARED) ./$(BUILDPYTHON) $(PROFILE_TASK) build_all_use_profile: - $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-use" + $(MAKE) all CFLAGS="$(CFLAGS) -fprofile-use -fprofile-correction" coverage: @echo "Building with support for coverage checking:" |