aboutsummaryrefslogtreecommitdiff
path: root/Makefile.preamble
diff options
context:
space:
mode:
authorJosh Rahm <joshuarahm@gmail.com>2020-11-25 15:47:02 -0700
committerJosh Rahm <joshuarahm@gmail.com>2020-11-25 15:47:02 -0700
commit6d22b0dfc7761a605758552d5824f8039ac5a00f (patch)
treede0cd4848c02b787d45b41afaca244606eceab5d /Makefile.preamble
parentb07c6f6a9d926d4eac726b94963e479839382675 (diff)
downloadstm32l4-6d22b0dfc7761a605758552d5824f8039ac5a00f.tar.gz
stm32l4-6d22b0dfc7761a605758552d5824f8039ac5a00f.tar.bz2
stm32l4-6d22b0dfc7761a605758552d5824f8039ac5a00f.zip
Primitive ability to call kernel code from userspace.
Diffstat (limited to 'Makefile.preamble')
-rw-r--r--Makefile.preamble2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.preamble b/Makefile.preamble
index b338833..f6e1370 100644
--- a/Makefile.preamble
+++ b/Makefile.preamble
@@ -2,7 +2,7 @@ OPT?=-O
PREFIX?=arm-unknown-eabi-
CC=$(PREFIX)gcc
LD=$(PREFIX)ld
-CFLAGS?=$(OPT) -mcpu=cortex-m4 -mthumb -mimplicit-it -g -lgcc -static -nostartfiles -Iinclude -Iinclude/arch/arm
+CFLAGS?=$(OPT) -mcpu=cortex-m4 -mthumb -g -lgcc -static -nostartfiles -Iinclude -Iinclude/arch/arm
LD_FLAGS?=-T linker/linker_script.ld -nostdlib --cref -Map linker/main.map -static
TEST_PREFIX=x86_64-pc-linux-gnu-