Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.debian.maint.python > #16540
| From | Soren Stoutner <soren@debian.org> |
|---|---|
| Newsgroups | linux.debian.maint.python |
| Subject | blhc failing due to non-verbose build |
| Date | 2024-12-06 03:10 +0100 |
| Message-ID | <JQvX3-e3bO-3@gated-at.bofh.it> (permalink) |
| Organization | Debian |
[Multipart message — attachments visible in raw view] - view raw
I am working on PyInstaller, which is mostly written in Python, but compiles a bootloader written in c. blhc failes because the longs do not contain verbose compile flags. 111:NONVERBOSE BUILD: [ 1/21] Compiling src/pyi_utils.c 112:NONVERBOSE BUILD: [ 2/21] Compiling src/pyi_main.c 113:NONVERBOSE BUILD: [ 3/21] Compiling src/pyi_exception_dialog.c 114:NONVERBOSE BUILD: [ 4/21] Compiling src/pyi_apple_events.c 115:NONVERBOSE BUILD: [ 5/21] Compiling src/pyi_splashlib.c 116:NONVERBOSE BUILD: [ 6/21] Compiling src/pyi_global_posix.c 117:NONVERBOSE BUILD: [ 7/21] Compiling src/pyi_multipkg.c https://salsa.debian.org/python-team/packages/pyinstaller/-/jobs/6701977 The standard tricks for most C/C++ packages don’t work. # Enable all build hardening flags. export DEB_BUILD_MAINT_OPTIONS = hardening=+all # Export the DPKG default build flags. DPKG_EXPORT_BUILDFLAGS = 1 # Include the default build flags. <https://wiki.debian.org/Hardening#dpkg-buildflags> include /usr/share/dpkg/buildflags.mk # Append the CPPFLAGS to the standard CFLAGS and CXXFLAGS variables, which is how CMake likes it. <https://wiki.debian.org/ Hardening#Notes_for_packages_using_CMake> CFLAGS += $(CPPFLAGS) CXXFLAGS += $(CPPFLAGS) https://salsa.debian.org/python-team/packages/pyinstaller/-/blob/debian/ master/debian/rules?ref_type=heads Does anyone know how to convince it to populate the logs with the full flags used to compile the binaries? -- Soren Stoutner soren@debian.org
Back to linux.debian.maint.python | Previous | Next — Next in thread | Find similar
blhc failing due to non-verbose build Soren Stoutner <soren@debian.org> - 2024-12-06 03:10 +0100
Re: blhc failing due to non-verbose build Bo YU <tsu.yubo@gmail.com> - 2024-12-06 04:30 +0100
Re: use of waf in pyinstaller (was: blhc) Simon McVittie <smcv@debian.org> - 2024-12-06 11:30 +0100
Re: use of waf in pyinstaller (was: blhc) Soren Stoutner <soren@debian.org> - 2024-12-07 18:40 +0100
Re: use of waf in pyinstaller (was: blhc) Scott Kitterman <debian@kitterman.com> - 2024-12-07 19:30 +0100
Re: use of waf in pyinstaller (was: blhc) Soren Stoutner <soren@debian.org> - 2024-12-07 19:40 +0100
csiph-web