af3c15fee5
Some gcc versions (e.g. Fedora 22 gcc 5.1.1) seem to use floating point registers for spilling and filling of general purpose registers. As the BIOS does not activate the AFP register setting of CR0 this can cause data exception program checks. Disallow floating point in the BIOS as a simple solution. Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com> Reviewed-by: David Hildenbrand <dahi@linux.vnet.ibm.com> Signed-off-by: Jens Freimann <jfrei@linux.vnet.ibm.com> Message-Id: <1443689387-34473-2-git-send-email-jfrei@linux.vnet.ibm.com> Signed-off-by: Christian Borntraeger <borntraeger@de.ibm.com>
29 lines
725 B
Makefile
29 lines
725 B
Makefile
all: build-all
|
|
# Dummy command so that make thinks it has done something
|
|
@true
|
|
|
|
include ../../config-host.mak
|
|
include $(SRC_PATH)/rules.mak
|
|
|
|
$(call set-vpath, $(SRC_PATH)/pc-bios/s390-ccw)
|
|
|
|
.PHONY : all clean build-all
|
|
|
|
OBJECTS = start.o main.o bootmap.o sclp-ascii.o virtio.o
|
|
CFLAGS += -fPIE -fno-stack-protector -ffreestanding
|
|
CFLAGS += -fno-delete-null-pointer-checks -msoft-float
|
|
LDFLAGS += -Wl,-pie -nostdlib
|
|
|
|
build-all: s390-ccw.img
|
|
|
|
s390-ccw.elf: $(OBJECTS)
|
|
$(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS)," Building $(TARGET_DIR)$@")
|
|
|
|
s390-ccw.img: s390-ccw.elf
|
|
$(call quiet-command,strip --strip-unneeded $< -o $@," Stripping $(TARGET_DIR)$@")
|
|
|
|
$(OBJECTS): Makefile
|
|
|
|
clean:
|
|
rm -f *.o *.d *.img *.elf *~
|