Message253754
| Author |
arekm |
| Recipients |
arekm, axh, brett.cannon, python-dev, scoder, vstinner |
| Date |
2015年10月30日.20:28:20 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1446236901.33.0.378634866201.issue25150@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Should it work with /configure '--with-cxx-main=g++' && make?
Because currently it doesn't:
g++ -c -Wno-unused-result -Wsign-compare -Wunreachable-code -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -Werror=declaration-after-statement -I. -IInclude -I./Include -DPy_BUILD_CORE -o Programs/python.o ./Programs/python.c
cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++
In file included from Include/pyatomic.h:10:0,
from Include/Python.h:53,
from ./Programs/python.c:3:
/usr/lib64/gcc/x86_64-pld-linux/5.2.0/include/stdatomic.h:40:9: error: ‘_Atomic’ does not name a type
[...]
(testing 3.5.0 + patch for this issue from hg) |
|