diff options
author | pkubaj <pkubaj@FreeBSD.org> | 2020-01-23 01:34:11 +0800 |
---|---|---|
committer | pkubaj <pkubaj@FreeBSD.org> | 2020-01-23 01:34:11 +0800 |
commit | d5de0524fd6a24e355e8fc769d12042e8b8675d2 (patch) | |
tree | 894bd8641232b56603a08021d4da82f89c303d3f | |
parent | 4db06a8b84b95efff4193ac4a03bcaab748f1525 (diff) | |
download | freebsd-ports-gnome-d5de0524fd6a24e355e8fc769d12042e8b8675d2.tar.gz freebsd-ports-gnome-d5de0524fd6a24e355e8fc769d12042e8b8675d2.tar.zst freebsd-ports-gnome-d5de0524fd6a24e355e8fc769d12042e8b8675d2.zip |
emulators/qemu: fix build on powerpc64 elfv2
Clang doesn't like -mbig:
cc -mbig -c -o spapr-rtas.o spapr-rtas.S
cc: error: unknown argument: '-mbig'
This file doesn't seem to be built on amd64, so removing -mbig doesn't cause a problem there. I also successfully built on powerpc64 elfv1 and it also builds.
PR: 243188
Approved by: bofh (maintainer timeout)
-rw-r--r-- | emulators/qemu/files/patch-pc-bios_spapr-rtas_Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/emulators/qemu/files/patch-pc-bios_spapr-rtas_Makefile b/emulators/qemu/files/patch-pc-bios_spapr-rtas_Makefile new file mode 100644 index 000000000000..46ac6f5c6eb1 --- /dev/null +++ b/emulators/qemu/files/patch-pc-bios_spapr-rtas_Makefile @@ -0,0 +1,15 @@ +--- pc-bios/spapr-rtas/Makefile.orig 2020-01-08 10:52:05 UTC ++++ pc-bios/spapr-rtas/Makefile +@@ -15,10 +15,10 @@ $(call set-vpath, $(SRC_PATH)/pc-bios/spapr-rtas) + build-all: spapr-rtas.bin + + %.o: %.S +- $(call quiet-command,$(CCAS) -mbig -c -o $@ $<,"CCAS","$(TARGET_DIR)$@") ++ $(call quiet-command,$(CCAS) -c -o $@ $<,"CCAS","$(TARGET_DIR)$@") + + %.img: %.o +- $(call quiet-command,$(CC) -nostdlib -mbig -o $@ $<,"Building","$(TARGET_DIR)$@") ++ $(call quiet-command,$(CC) -nostdlib -o $@ $<,"Building","$(TARGET_DIR)$@") + + %.bin: %.img + $(call quiet-command,$(OBJCOPY) -O binary -j .text $< $@,"Building","$(TARGET_DIR)$@") |