diff options
| author | hathach <[email protected]> | 2024-05-04 12:36:40 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2024-05-04 12:36:40 +0700 |
| commit | c020a0190d5f22c0f761ce0a5ec4a6e35e4d0662 (patch) | |
| tree | a2167bc74dee5201916f1054aafbca3bc4a0be28 /examples/build_system/make/cpu | |
| parent | 666702f478dd91d5d2ea4f194d77f835844a19cd (diff) | |
add cmake for f1c100s
Diffstat (limited to 'examples/build_system/make/cpu')
| -rw-r--r-- | examples/build_system/make/cpu/arm926ej-s.mk | 9 |
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 |
