Message332234
| Author |
vstinner |
| Recipients |
cstratak, dstufft, eric.araujo, hroncok, ned.deily, vstinner |
| Date |
2018年12月20日.15:24:26 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1545319466.07.0.788709270274.issue35257@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
I repeated the same tests for Python 3.6 on PR 11265: all tests are ok!
I replaced "38" with "36" and "3.8" and 3.6" and my 3 scripts :-) I modified step1.sh for PGO+LTO and to compile with -O0 (just to make tests faster): similar script than in my previous message.
./configure CC=clang --with-lto --prefix /opt/py36
(1) 4 => OK!
(2) 0, False => OK!
(3) 0 => OK!
./configure CC=clang --with-lto --prefix /opt/py36 --enable-shared
(1) 4 => OK!
(2) 0, False => OK!
(3) 0 => OK!
./configure CC=clang --with-lto --prefix /opt/py36 --enable-optimizations
(1) 8 => OK!
(2) 0, False => OK!
(3) 0 => OK! |
|