mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-02-17 08:21:13 +00:00
[Release] Install compiler-rt builtins during Phase 1 on AIX (#81485)
The current test-release.sh script does not install the necessary compiler-rt builtin's during Phase 1 on AIX, resulting on a non-functional Phase 1 clang. Futhermore, the installation is also necessary for Phase 2 on AIX. Co-authored-by: Alison Zhang <alisonzhang@ibm.com> (cherry picked from commit 3af5c98200e0b1268f755c3f289be4f73aac4214)
This commit is contained in:
parent
7b61ddefc2
commit
159969b388
@ -532,9 +532,9 @@ function build_llvmCore() {
|
||||
BuildTarget="clang"
|
||||
InstallTarget="install-clang install-clang-resource-headers"
|
||||
# compiler-rt builtins is needed on AIX to have a functional Phase 1 clang.
|
||||
if [ "$System" = "AIX" -o "$Phase" != "1" ]; then
|
||||
if [ "$System" = "AIX" ]; then
|
||||
BuildTarget="$BuildTarget runtimes"
|
||||
InstallTarget="$InstallTarget install-runtimes"
|
||||
InstallTarget="$InstallTarget install-builtins"
|
||||
fi
|
||||
fi
|
||||
if [ "$Phase" -eq "3" ]; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user