forked from mirrors/gecko-dev
The llvm-symbolizer tasks currently extract a llvm-symbolizer from clang tasks. Changes in clang 14 make the hack that we have in place to keep llvm-symbolizer statically linked to libllvm while clang uses a dynamic libllvm not work anymore, so it's time to bite the bullet and build llvm-symbolizer separately. We share most of the build setup with the compiler-rt build. Differential Revision: https://phabricator.services.mozilla.com/D140711
5 lines
91 B
Bash
Executable file
5 lines
91 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e -x
|
|
|
|
$(dirname $0)/build-llvm-common.sh llvm install-llvm-symbolizer "$@"
|