Message331122
| Author |
cstratak |
| Recipients |
cstratak, dstufft, eric.araujo |
| Date |
2018年12月05日.14:44:59 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1544021099.38.0.788709270274.issue35257@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
And here is the difference between compiling the extension with the current tip, comparing to applying my current draft PR:
Master branch with the linker flags propagated:
running build
running build_ext
building 'demo' extension
creating build
creating build/temp.linux-x86_64-3.8
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/home/Harris/dev/cpython/_install/include/python3.8m -c demo.c -o build/temp.linux-x86_64-3.8/demo.o
creating build/lib.linux-x86_64-3.8
gcc -pthread -shared -flto -fuse-linker-plugin -ffat-lto-objects -flto-partition=none -g build/temp.linux-x86_64-3.8/demo.o -o build/lib.linux-x86_64-3.8/demo.cpython-38m-x86_64-linux-gnu.so
With introduction of the LDFLAGS_NODIST variable:
running build
running build_ext
building 'demo' extension
creating build
creating build/temp.linux-x86_64-3.8
gcc -pthread -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -fPIC -I/home/Harris/dev/cpython/_install/include/python3.8m -c demo.c -o build/temp.linux-x86_64-3.8/demo.o
creating build/lib.linux-x86_64-3.8
gcc -pthread -shared build/temp.linux-x86_64-3.8/demo.o -o build/lib.linux-x86_64-3.8/demo.cpython-38m-x86_64-linux-gnu.so |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2018年12月05日 14:44:59 | cstratak | set | recipients:
+ cstratak, eric.araujo, dstufft |
| 2018年12月05日 14:44:59 | cstratak | set | messageid: <1544021099.38.0.788709270274.issue35257@psf.upfronthosting.co.za> |
| 2018年12月05日 14:44:59 | cstratak | link | issue35257 messages |
| 2018年12月05日 14:44:59 | cstratak | create |
|