2018-05-21 13:56:30 +02:00
|
|
|
#!/bin/bash
|
2021-06-29 14:04:49 +00:00
|
|
|
|
2018-05-21 13:56:30 +02:00
|
|
|
#
|
2021-06-29 14:04:49 +00:00
|
|
|
# Copyright (C) 2018-2021 Intel Corporation
|
2018-05-21 13:56:30 +02:00
|
|
|
#
|
2018-09-18 09:11:08 +02:00
|
|
|
# SPDX-License-Identifier: MIT
|
2018-05-21 13:56:30 +02:00
|
|
|
#
|
|
|
|
|
2019-03-18 18:46:19 +01:00
|
|
|
wget https://aur.archlinux.org/cgit/aur.git/snapshot/opencl-clang-git.tar.gz
|
|
|
|
tar -xzf opencl-clang-git.tar.gz
|
|
|
|
cd opencl-clang-git
|
|
|
|
makepkg -i --noconfirm
|
|
|
|
cd ..
|
2018-05-21 13:56:30 +02:00
|
|
|
|
2019-03-18 18:46:19 +01:00
|
|
|
wget https://aur.archlinux.org/cgit/aur.git/snapshot/intel-graphics-compiler.tar.gz
|
|
|
|
tar -xzf intel-graphics-compiler.tar.gz
|
|
|
|
cd intel-graphics-compiler
|
|
|
|
makepkg -i --noconfirm
|
|
|
|
cd ..
|