From 931a1b918711a7056c59ac6987306bdaf3c6d9a2 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 29 Jul 2019 11:25:12 -0700 Subject: docs: Add snippet for compiler linker split --- docs/markdown/snippets/split-compiler-and-linker-representations.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 docs/markdown/snippets/split-compiler-and-linker-representations.md (limited to 'docs') diff --git a/docs/markdown/snippets/split-compiler-and-linker-representations.md b/docs/markdown/snippets/split-compiler-and-linker-representations.md new file mode 100644 index 0000000..fd2e622 --- /dev/null +++ b/docs/markdown/snippets/split-compiler-and-linker-representations.md @@ -0,0 +1,6 @@ +## Compiler and dynamic linker representation split + +0.52.0 inclues a massive refactor of the representaitons of compilers to +tease apart the representations of compilers and dynamic linkers (ld). This +fixes a number of compiler/linker combinations. In particular this fixes +use GCC and vanilla clang on macOS. \ No newline at end of file -- cgit v1.1 From 142012ab73bf1cfedb59f539400f0c18df055ec8 Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Wed, 31 Jul 2019 15:12:45 -0700 Subject: docs: add snippet for l_undef on apple I didn't really mean to, but in splitting the linkers and compilers I got this all working. --- docs/markdown/snippets/b_lundef_on_apple.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 docs/markdown/snippets/b_lundef_on_apple.md (limited to 'docs') diff --git a/docs/markdown/snippets/b_lundef_on_apple.md b/docs/markdown/snippets/b_lundef_on_apple.md new file mode 100644 index 0000000..850a412 --- /dev/null +++ b/docs/markdown/snippets/b_lundef_on_apple.md @@ -0,0 +1,5 @@ +## Meson's builtin b_lundef is now supported on macOS + +This has always been possible, but there are some addtional restrictions on +macOS (mainly do to Apple only features). With the linker internal +re-architecture this has become possible \ No newline at end of file -- cgit v1.1