mirror of
https://github.com/kelvinlawson/atomthreads.git
synced 2026-08-24 15:20:06 +02:00
ARM/IntegratorCP: Add -nographic to QEMU command-line. Use AFLAGS for assembler flags.
This commit is contained in:
@@ -15,7 +15,7 @@ LN = arm-none-eabi-gcc
|
|||||||
AS = arm-none-eabi-gcc
|
AS = arm-none-eabi-gcc
|
||||||
|
|
||||||
CFLAGS := $(CFLAGS) -Wall -g -c -mcpu=arm926ej-s -ffreestanding
|
CFLAGS := $(CFLAGS) -Wall -g -c -mcpu=arm926ej-s -ffreestanding
|
||||||
AFLAGS := $(CFLAGS) -Wall -g -c -mcpu=arm926ej-s -ffreestanding
|
AFLAGS := $(AFLAGS) -Wall -g -c -mcpu=arm926ej-s -ffreestanding
|
||||||
LFLAGS := $(LFLAGS) -Wall -mcpu=arm926ej-s -Wl,-Map=system.map -Tsystem.ld
|
LFLAGS := $(LFLAGS) -Wall -mcpu=arm926ej-s -Wl,-Map=system.map -Tsystem.ld
|
||||||
|
|
||||||
CDEFS := $(CDEFS) -DATOMTHREADS_TEST='"$(TEST_NAME)"'
|
CDEFS := $(CDEFS) -DATOMTHREADS_TEST='"$(TEST_NAME)"'
|
||||||
@@ -45,7 +45,7 @@ include ../rules.mk
|
|||||||
|
|
||||||
run_test: clean all
|
run_test: clean all
|
||||||
echo "START TEST $(TEST_NAME)"
|
echo "START TEST $(TEST_NAME)"
|
||||||
qemu-system-arm -M integratorcp -kernel boot.elf -semihosting | tee atomthreads_test.out
|
qemu-system-arm -M integratorcp -kernel boot.elf -semihosting -nographic | tee atomthreads_test.out
|
||||||
|
|
||||||
all_tests:
|
all_tests:
|
||||||
echo "Starting atomthreads test suite" > atomthreads_test.out
|
echo "Starting atomthreads test suite" > atomthreads_test.out
|
||||||
|
|||||||
Reference in New Issue
Block a user