Brett Cannon added the comment:

Just to double-check I didn't screw up, I ran ``make distclean; ./configure; 
make -j8`` and the problem persists.

It is *only* files compiled through setup.py and not by the Makefile. I do not 
have OPT set, but I do have CFLAGS defined. But even if I explicitly unset 
CFLAGS, OPT,CPPFLAGS, LDFLAGS, and use a different shell the problem persists.



Something compiled by the Makefile:

/Users/bcannon/Developer/bin/clang -c -Wno-unused-result -DNDEBUG -g -fwrapv 
-O3 -Wall -Wstrict-prototypes     -I. -IInclude -I./Include -I 
/Users/bcannon/Developer/include 
-I/Users/bcannon/Developer/Cellar/readline/6.2.2/include -I 
/Users/bcannon/Developer/include 
-I/Users/bcannon/Developer/Cellar/readline/6.2.2/include  -DPy_BUILD_CORE -o 
Python/frozen.o Python/frozen.c



Something compiled by setup.py:

/Users/bcannon/Developer/bin/clang -Wno-unused-result -g -O0 -Wall 
-Wstrict-prototypes -Wno-unused-value -Wno-empty-body -Qunused-arguments 
-Wno-unused-value -Wno-empty-body -Qunused-arguments -I./Include -I. 
-I/Users/bcannon/Developer/include 
-I/Users/bcannon/Developer/Cellar/readline/6.2.2/include 
-I/Users/bcannon/Developer/repo/cpython/py3.3/Include 
-I/Users/bcannon/Developer/repo/cpython/py3.3 -c 
/Users/bcannon/Developer/repo/cpython/py3.3/Modules/sha512module.c -o 
build/temp.macosx-10.8-x86_64-3.3/Users/bcannon/Developer/repo/cpython/py3.3/Modules/sha512module.o
/Users/bcannon/Developer/repo/cpython/py3.3/Modules/sha512module.c:535:12: 
warning: implicit declaration of function '_PyUnicode_CheckConsistency' is 
invalid in C99 [-Wimplicit-function-declaration]
    assert(_PyUnicode_CheckConsistency(retval, 1));
           ^
/usr/include/assert.h:93:25: note: expanded from macro 'assert'
    (__builtin_expect(!(e), 0) ? __assert_rtn(__func__, __FILE__, __LINE__, #e) 
: (void)0)
                        ^
1 warning generated.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue16342>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to