Author: Armin Rigo <ar...@tunes.org>
Branch: 
Changeset: r92086:758dbcd2983e
Date: 2017-08-05 09:19 +0200
http://bitbucket.org/pypy/pypy/changeset/758dbcd2983e/

Log:    Fix: unclear why this was done, but the end result was that even
        "make lldebug" in the PyPy sources would compile everything in -O3
        instead of
        -O1, which was most likely not intended.

diff --git a/rpython/rlib/rvmprof/cintf.py b/rpython/rlib/rvmprof/cintf.py
--- a/rpython/rlib/rvmprof/cintf.py
+++ b/rpython/rlib/rvmprof/cintf.py
@@ -18,7 +18,7 @@
 SHARED = SRC.join('shared')
 BACKTRACE = SHARED.join('libbacktrace')
 
-compile_extra = ['-DRPYTHON_VMPROF', '-O3']
+compile_extra = ['-DRPYTHON_VMPROF']
 separate_module_files = [
     SHARED.join('symboltable.c'),
     SHARED.join('vmprof_unix.c')
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to