This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jeffrey.Walton
Recipients Jeffrey.Walton
Date 2014-03-15.01:51:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1394848317.25.0.488158919875.issue20930@psf.upfronthosting.co.za>
In-reply-to
Content
Defining PY_FORMAT_LONG_LONG had a side effect:

/usr/local/bin/clang -c -Wno-unused-result -Werror=declaration-after-statement -DNDEBUG -g -fwrapv -O3 -Wall -Wstrict-prototypes -g3 -fsanitize=undefined -DPY_FORMAT_LONG_LONG=1 -g3 -fsanitize=undefined -DPY_FORMAT_LONG_LONG=1   -I. -IInclude -I./Include    -DPy_BUILD_CORE -o Objects/unicodeobject.o Objects/unicodeobject.c
Objects/unicodeobject.c:2325:15: warning: incompatible integer to pointer
      conversion initializing 'char *' with an expression of type 'int'
      [-Wint-conversion]
        char *f = PY_FORMAT_LONG_LONG;
              ^   ~~~~~~~~~~~~~~~~~~~
*****

export CC=/usr/local/bin/clang
export CXX=/usr/local/bin/clang++
export CFLAGS="-g3 -fsanitize=undefined -DPY_FORMAT_LONG_LONG=1"
export CXXFLAGS="-g3 -fsanitize=undefined -fno-sanitize=vptr -DPY_FORMAT_LONG_LONG=1"
...

./configure --disable-ipv6

make
History
Date User Action Args
2014-03-15 01:51:57Jeffrey.Waltonsetrecipients: + Jeffrey.Walton
2014-03-15 01:51:57Jeffrey.Waltonsetmessageid: <1394848317.25.0.488158919875.issue20930@psf.upfronthosting.co.za>
2014-03-15 01:51:57Jeffrey.Waltonlinkissue20930 messages
2014-03-15 01:51:56Jeffrey.Waltoncreate