Displaying 1 result from an estimated 1 matches for "andrewkelley".
2020 Nov 11
0
Building an LLVM cross-compiler
...and finally itself:
https://github.com/ziglang/zig-bootstrap
You can see the build script is not too complicated. The main trick is
using CC and CXX to use `zig cc` and `zig c++` as drop-in replacements
for a C and C++ compiler, respectively.
I wrote some more details about this here:
https://andrewkelley.me/post/zig-cc-powerful-drop-in-replacement-gcc-clang.html
On 11/6/20 3:12 PM, Cág via llvm-dev wrote:
> Hi everyone,
>
> I recently sent a message that may or may not have made it to the list,
> on problems building an LLVM cross-compiler. Now the issue seems clear
> to me and is...