Skip to content

Commit e4e8ae9

Browse files
committed
[Submodules] bump
1 parent 868cf15 commit e4e8ae9

File tree

3 files changed

+19
-8
lines changed

3 files changed

+19
-8
lines changed

Alive2/alive2

Submodule alive2 updated 344 files

Alive2/build.sh

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,27 @@
1+
#! /usr/bin/env bash
2+
13
set -e
24

3-
git submodule update --init alive2 llvm-project
5+
git submodule update --init --remote llvm-project alive2
6+
7+
pushd llvm-project
8+
git checkout llvmorg-20.1.1
9+
popd
10+
11+
pushd alive2
12+
git checkout v20.0
13+
popd
414

15+
rm -rf llvm-project/build
516
mkdir -p llvm-project/build
6-
cd llvm-project/build
17+
pushd llvm-project/build
718
cmake -GNinja -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++ -DLLVM_ENABLE_RTTI=ON -DLLVM_ENABLE_EH=ON -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release -DLLVM_TARGETS_TO_BUILD=X86 -DLLVM_ENABLE_ASSERTIONS=ON -DLLVM_ENABLE_PROJECTS="llvm;clang" ../llvm
819
ninja
20+
popd
921

10-
cd ../..
22+
rm -rf alive2/build
1123
mkdir -p alive2/build
12-
cd alive2/build
24+
pushd alive2/build
1325
cmake -GNinja -DCMAKE_PREFIX_PATH="$(realpath ../../llvm-project/build)" -DBUILD_TV=1 -DCMAKE_BUILD_TYPE=Release "$(realpath ..)"
1426
ninja
15-
16-
27+
popd

Alive2/llvm-project

0 commit comments

Comments
 (0)