diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-02 20:50:56 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-07-02 20:50:56 +0300 |
commit | 5d0821946404322152319f7f2b22b96477ac406e (patch) | |
tree | f238fa0696173e838585a17cf490e208cd14b825 /docs/markdown/snippets/bitcode_support.md | |
parent | 1c44afdeed636f90a1e2685cba4143eacde21887 (diff) | |
download | meson-0.47.0.tar.gz |
Update everything for new release.0.47.0
Diffstat (limited to 'docs/markdown/snippets/bitcode_support.md')
-rw-r--r-- | docs/markdown/snippets/bitcode_support.md | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/docs/markdown/snippets/bitcode_support.md b/docs/markdown/snippets/bitcode_support.md deleted file mode 100644 index a0d7ad98f..000000000 --- a/docs/markdown/snippets/bitcode_support.md +++ /dev/null @@ -1,15 +0,0 @@ -## New base build option for LLVM (Apple) bitcode support - -When building with clang on macOS, you can now build your static and shared -binaries with embedded bitcode by enabling the `b_bitcode` [base -option](Builtin-options.md#Base_options) by passing `-Db_bitcode=true` to -Meson. - -This is better than passing the options manually in the environment since Meson -will automatically disable conflicting options such as `b_asneeded`, and will -disable bitcode support on targets that don't support it such as -`shared_module()`. - -Since this requires support in the linker, it is currently only enabled when -using Apple ld. In the future it can be extended to clang on other platforms -too. |