summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--boot.S1
2 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 784f8cd..6dc9912 100644
--- a/Makefile
+++ b/Makefile
@@ -25,7 +25,7 @@ FILESYSTEM = filesystem.cpio.gz
IMAGE = linux-system.axf
LD_SCRIPT = model.lds.S
-CROSS_COMPILE = arm-none-linux-gnueabi-
+CROSS_COMPILE ?= arm-unknown-eabi-
CC = $(CROSS_COMPILE)gcc
LD = $(CROSS_COMPILE)ld
diff --git a/boot.S b/boot.S
index 1a906d7..1c803ac 100644
--- a/boot.S
+++ b/boot.S
@@ -8,6 +8,7 @@
*/
.syntax unified
+ .arch_extension sec
.text
.globl _start