summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2019-09-15 13:37:48 -0700
committerGitHub <noreply@github.com>2019-09-15 13:37:48 -0700
commitcf5560b703ed9b498d5651ca8fd74ea2566e6f5c (patch)
tree47176abe304efa0f71ab31f75cd1a35ba26835b8 /README.md
parent5dd4c4bb8f5692354cd47309b75cc8c76eaed984 (diff)
downloadmeta-clang-cf5560b703ed9b498d5651ca8fd74ea2566e6f5c.tar.gz
Remove python syntax highlighter
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index ecba661..f150c96 100644
--- a/README.md
+++ b/README.md
@@ -51,7 +51,7 @@ LIBCPLUSPLUS = ""
51in `local.conf`. 51in `local.conf`.
52You can select libstdc++ per package too by writing bbappends for them containing 52You can select libstdc++ per package too by writing bbappends for them containing
53 53
54```python 54```shell
55LIBCPLUSPLUS_toolchain-clang_pn-<recipe> = "" 55LIBCPLUSPLUS_toolchain-clang_pn-<recipe> = ""
56``` 56```
57 57
@@ -59,7 +59,7 @@ LIBCPLUSPLUS_toolchain-clang_pn-<recipe> = ""
59 59
60By default, clang build from meta-clang uses clang runtime ( compiler-rt + libc++ + libunwind ) out of box 60By default, clang build from meta-clang uses clang runtime ( compiler-rt + libc++ + libunwind ) out of box
61However, it is possible to switch to using gcc runtime as default, In order to do that 61However, it is possible to switch to using gcc runtime as default, In order to do that
62following settings are needed in site configurations e.g. in local.conf 62following settings are needed in site configurations e.g. in `local.conf`
63 63
64```shell 64```shell
65TOOLCHAIN ?= "clang" 65TOOLCHAIN ?= "clang"
@@ -91,7 +91,7 @@ TOOLCHAIN_pn-<recipe> = "gcc"
91 91
92and OE will start using gcc to cross compile that recipe. 92and OE will start using gcc to cross compile that recipe.
93 93
94And if a component does not build with libc++, you can add it to conf/nonclangable.inc e.g. 94And if a component does not build with libc++, you can add it to `conf/nonclangable.inc` e.g.
95 95
96```shell 96```shell
97CXX_remove_pn-<recipe>_toolchain-clang = " -stdlib=libc++ " 97CXX_remove_pn-<recipe>_toolchain-clang = " -stdlib=libc++ "