2018-05-21 19:56:30 +08:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
2019-03-19 01:46:19 +08:00
|
|
|
# Copyright (C) 2018-2019 Intel Corporation
|
2018-05-21 19:56:30 +08:00
|
|
|
#
|
2018-09-18 15:11:08 +08:00
|
|
|
# SPDX-License-Identifier: MIT
|
2018-05-21 19:56:30 +08:00
|
|
|
#
|
|
|
|
|
2019-03-19 01:46:19 +08: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 19:56:30 +08:00
|
|
|
|
2019-03-19 01:46:19 +08: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 ..
|