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.

classification
Title: build fails with address sanitizer
Type: compile error Stage:
Components: Build Versions: Python 3.6, Python 3.5
process
Status: closed Resolution: third party
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, jj, serhiy.storchaka, shakur shams Mullick, vstinner
Priority: normal Keywords:

Created on 2016-03-10 20:02 by shakur shams Mullick, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg261521 - (view) Author: shakur shams Mullick (shakur shams Mullick) * Date: 2016-03-10 20:02
After configuring with address sanitizer like this:

$ ./configure --with-address-sanitizer --disable-ipv6

build fails when:
$make

gcc -pthread -c -fsanitize=address -fno-omit-frame-pointer  -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 Objects/obmalloc.o Objects/obmalloc.c
In file included from /usr/include/features.h:364:0,
                 from /usr/include/limits.h:25,
                 from /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h:168,
                 from /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/syslimits.h:7,
                 from /usr/lib/gcc/x86_64-linux-gnu/5/include-fixed/limits.h:34,
                 from Include/Python.h:11,
                 from Objects/obmalloc.c:1:
Objects/obmalloc.c: In function ‘_PyObject_Realloc’:
/usr/include/x86_64-linux-gnu/bits/string3.h:50:1: error: inlining failed in call to always_inline ‘memcpy’: function attribute mismatch
 __NTH (memcpy (void *__restrict __dest, const void *__restrict __src,
 ^
Objects/obmalloc.c:1668:13: error: called from here
             memcpy(bp, p, size);
             ^
Makefile:1538: recipe for target 'Objects/obmalloc.o' failed
make: *** [Objects/obmalloc.o] Error 1
msg261525 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-03-10 21:45
This is a gcc issue: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65873 .
History
Date User Action Args
2022-04-11 14:58:28adminsetgithub: 70719
2020-02-20 03:53:21henrysetversions: + Python 3.5, - Python 3.7
2020-02-20 03:52:56henrysetversions: + Python 3.6, Python 3.7, - Python 3.9
title: sanitizer -> build fails with address sanitizer
2020-02-20 03:52:09henrysetversions: + Python 3.9, - Python 3.5, Python 3.6
title: build fails with address sanitizer -> sanitizer
2017-02-24 16:05:14jjsetnosy: + jj
2016-03-11 16:47:35brett.cannonsetstatus: open -> closed
resolution: third party
2016-03-10 21:45:02serhiy.storchakasetmessages: + msg261525
2016-03-10 20:16:20SilentGhostsetnosy: + vstinner, benjamin.peterson, serhiy.storchaka

versions: + Python 3.6
2016-03-10 20:02:45shakur shams Mullickcreate