summaryrefslogtreecommitdiff
path: root/examples/build_system/make/cpu
diff options
context:
space:
mode:
authorhathach <[email protected]>2024-05-04 12:36:40 +0700
committerhathach <[email protected]>2024-05-04 12:36:40 +0700
commitc020a0190d5f22c0f761ce0a5ec4a6e35e4d0662 (patch)
treea2167bc74dee5201916f1054aafbca3bc4a0be28 /examples/build_system/make/cpu
parent666702f478dd91d5d2ea4f194d77f835844a19cd (diff)
add cmake for f1c100s
Diffstat (limited to 'examples/build_system/make/cpu')
-rw-r--r--examples/build_system/make/cpu/arm926ej-s.mk9
1 files changed, 9 insertions, 0 deletions
diff --git a/examples/build_system/make/cpu/arm926ej-s.mk b/examples/build_system/make/cpu/arm926ej-s.mk
new file mode 100644
index 000000000..5b84f514f
--- /dev/null
+++ b/examples/build_system/make/cpu/arm926ej-s.mk
@@ -0,0 +1,9 @@
+ifeq ($(TOOLCHAIN),gcc)
+ CFLAGS += \
+ -mcpu=arm926ej-s \
+
+else ifeq ($(TOOLCHAIN),iar)
+ #CFLAGS += --cpu cortex-a53
+ #ASFLAGS += --cpu cortex-a53
+
+endif