aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown
diff options
context:
space:
mode:
authorSomasekhar Penugonda <somashekar.penugonda@cirrus.com>2018-03-15 18:33:11 +0530
committerBedarkar, Malhar <malhar.bedarkar@cirrus.com>2018-03-27 17:04:26 -0500
commite62b8109ebfef437a380f2d8cedd1565095a5574 (patch)
tree2e353dba15707166c005125930dee6be90751193 /docs/markdown
parent831d1e4c2e7b0ce8dfd0b2471bf2dab499181d66 (diff)
downloadmeson-e62b8109ebfef437a380f2d8cedd1565095a5574.zip
meson-e62b8109ebfef437a380f2d8cedd1565095a5574.tar.gz
meson-e62b8109ebfef437a380f2d8cedd1565095a5574.tar.bz2
Updates to CPP support and update review changes
Diffstat (limited to 'docs/markdown')
-rw-r--r--docs/markdown/Reference-tables.md1
-rw-r--r--docs/markdown/snippets/armcc-cross.md15
2 files changed, 16 insertions, 0 deletions
diff --git a/docs/markdown/Reference-tables.md b/docs/markdown/Reference-tables.md
index 7611232..bda4c23 100644
--- a/docs/markdown/Reference-tables.md
+++ b/docs/markdown/Reference-tables.md
@@ -21,6 +21,7 @@ These are return values of the `get_id` method in a compiler object.
| g95 | The G95 Fortran compiler |
| open64 | The Open64 Fortran Compiler |
| nagfor | The NAG Fortran compiler |
+| arm | ARM compiler |
## Script environment variables
diff --git a/docs/markdown/snippets/armcc-cross.md b/docs/markdown/snippets/armcc-cross.md
new file mode 100644
index 0000000..668f0ab
--- /dev/null
+++ b/docs/markdown/snippets/armcc-cross.md
@@ -0,0 +1,15 @@
+## 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']
+
+```