aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/armcc-cross.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/markdown/snippets/armcc-cross.md')
-rw-r--r--docs/markdown/snippets/armcc-cross.md15
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/markdown/snippets/armcc-cross.md b/docs/markdown/snippets/armcc-cross.md
deleted file mode 100644
index 668f0ab..0000000
--- a/docs/markdown/snippets/armcc-cross.md
+++ /dev/null
@@ -1,15 +0,0 @@
-## ARM compiler for C and CPP
-
-Cross-compilation is now supported for ARM targets using ARM compiler - ARMCC.
-The current implementation does not support shareable libraries.
-The default extension of the output is .axf.
-The environment path should be set properly for the ARM compiler executables.
-The '--cpu' option with the appropriate target type should be mentioned
-in the cross file as shown in the snippet below.
-
-```
-[properties]
-c_args = ['--cpu=Cortex-M0plus']
-cpp_args = ['--cpu=Cortex-M0plus']
-
-```