Skip to content

Commit efb893d

Browse files
committed
sudo apt-get
Signed-off-by: Lukasz Dorau <[email protected]>
1 parent c5a3bc5 commit efb893d

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

apt-run.sh

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
sudo date
2-
echo "deb http://ddebs.ubuntu.com $(lsb_release -cs) main restricted universe multiverse
3-
deb http://ddebs.ubuntu.com $(lsb_release -cs)-updates main restricted universe multiverse
4-
deb http://ddebs.ubuntu.com $(lsb_release -cs)-proposed main restricted universe multiverse" | \
5-
sudo tee -a /etc/apt/sources.list.d/ddebs.list
2+
sudo apt-get install flex bison libz-dev cmake libc6 libstdc++6 python3-pip
3+
python3 -m pip install mako
4+
git config --global user.name "FirstName LastName"
5+
git config --global user.email "[email protected]"
6+
7+
mkdir -p $HOME/libigc-workspace
8+
cd $HOME/libigc-workspace
9+
git clone https://github.com/intel/vc-intrinsics vc-intrinsics
10+
git clone -b llvmorg-14.0.5 https://github.com/llvm/llvm-project llvm-project
11+
git clone -b ocl-open-140 https://github.com/intel/opencl-clang llvm-project/llvm/projects/opencl-clang
12+
git clone -b llvm_release_140 https://github.com/KhronosGroup/SPIRV-LLVM-Translator llvm-project/llvm/projects/llvm-spirv
13+
git clone https://github.com/KhronosGroup/SPIRV-Tools.git SPIRV-Tools
14+
git clone https://github.com/KhronosGroup/SPIRV-Headers.git SPIRV-Headers
15+

build-igc.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
cd $HOME/libigc-workspace
2+
# git clone https://github.com/intel/intel-graphics-compiler igc
3+
cd igc
4+
# git tag
5+
6+
git checkout -b tag igc-1.0.17791.16
7+
8+
mkdir build
9+
cd build
10+
cmake ../igc
11+
make -j`nproc`
12+

0 commit comments

Comments
 (0)