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: "AMD64 FreeBSD 9.0 3.x" fails to build the _decimal module: #error "libmpdec version >= 2.4.1 required"
Type: compile error Stage: resolved
Components: Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: koobs, skrah, vstinner
Priority: normal Keywords:

Created on 2014-08-27 09:43 by vstinner, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (3)
msg225951 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2014-08-27 09:43
http://buildbot.python.org/all/builders/AMD64%20FreeBSD%209.0%203.x/builds/7213/steps/test/logs/stdio

building '_decimal' extension
gcc -pthread -fPIC -fno-strict-aliasing -Wsign-compare -g -O0 -Wall -Wstrict-prototypes -Werror=declaration-after-statement -DCONFIG_64=1 -DASM=1 -I./Include -I. -IInclude -I/usr/local/include -I/usr/home/buildbot/buildarea/3.x.krah-freebsd/build/Include -I/usr/home/buildbot/buildarea/3.x.krah-freebsd/build -c /usr/home/buildbot/buildarea/3.x.krah-freebsd/build/Modules/_decimal/_decimal.c -o build/temp.freebsd-9.0-RELEASE-p3-amd64-3.5-pydebug/usr/home/buildbot/buildarea/3.x.krah-freebsd/build/Modules/_decimal/_decimal.o -Wextra -Wno-missing-field-initializers
/usr/home/buildbot/buildarea/3.x.krah-freebsd/build/Modules/_decimal/_decimal.c:43:4: error: #error "libmpdec version >= 2.4.1 required"
msg225953 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2014-08-27 09:50
Yeah, I know -- I have to release libmpdec-2.4.1.  The bot is currently testing
the supported configuration that if _decimal fails to build, decimal.py should
be used automatically.

The tests fail due to #22280, otherwise the bot would be green even with the
_decimal build failure.
msg226152 - (view) Author: Stefan Krah (skrah) * (Python committer) Date: 2014-08-30 21:50
I've upgraded the system libmpdec to 2.4.1.
History
Date User Action Args
2022-04-11 14:58:07adminsetgithub: 66479
2014-08-30 21:50:49skrahsetstatus: open -> closed
resolution: fixed
messages: + msg226152

stage: resolved
2014-08-27 09:50:59skrahsetmessages: + msg225953
2014-08-27 09:43:11vstinnercreate