aboutsummaryrefslogtreecommitdiff
path: root/emulators/qemu-user-static-devel/files/patch-configure
Commit message (Collapse)AuthorAgeFilesLines
* emulators/qemu-user-static-devel: Update to the newest snapshot.Gleb Popov2021-08-041-0/+22
| | | | | | | This updates the port to the tip of `blitz-next` branch and enables `make test`. Approved by: mat Differential Revision: https://reviews.freebsd.org/D31255
* emulator/qemu-user-static: fix major regression from signal refactorKyle Evans2020-09-141-52/+0
| | | | | | | | | | | | | | | | | Excellent diagnosis by Andrew Gierth revealed the exact nature of the regression from previous signal handling fixes; gobject-introspection now builds, and we should be able to once again build a pretty large chunk of the ports tree. The configure script patch has been incorporated into our tree, so the patch may be removed. As mentioned previously, qemu-user-static and qemu-user-static-devel will not always be updated in lockstep; future changes will land to qemu-user-static-devel first followed by qemu-user-static. Notes: svn path=/head/; revision=548669
* Fix emulators/qemu-sbruno build with lld 10.0.0Diane Bruce2020-03-201-0/+52
As reported in bug 244251, with clang and lld 10.0.0 the emulators/qemu-sbruno port fails in the configure stage: ===> Configuring for qemu-user-static-2.11.50.g20191211_3 ERROR: We need to link the QEMU user mode binaries at a specific text address. Unfortunately your linker doesn't support either the -Ttext-segment option or printing the default linker script with --verbose. If you don't want the user mode binaries, pass the --disable-user option to configure. ===> Script "configure" failed unexpectedly. Please report the problem to emulation@FreeBSD.org [maintainer] and attach the "/wrkdirs/usr/ports/emulators/qemu-user-static/work/qemu-bsd-user-d587db6/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/local/sbin/pkg-static info -g -Ea). *** Error code 1 This is because lld 10.0.0 no longer supports the -Ttext-segment option, and uses --image-base for similar functionality. I am proposing a patch that makes the configure script check for the --image-base option first, then the -Ttext-segment option. PR: ports/244772 Submitted by: dim@FreeBSD.org Approved by: Maintainer Notes: svn path=/head/; revision=528752