mirror of
https://github.com/intel/compute-runtime.git
synced 2025-09-15 13:01:45 +08:00

- Build Arch Aur packages (opencl-clang, igc) and then build Neo - Build opencl-clang, igc without packaging and then build Neo - Limit number of make jobs to 1 for IGC build Signed-off-by: Jacek Danecki <jacek.danecki@intel.com> https://github.com/intel/compute-runtime/pull/146 Change-Id: I7af5ea10fd76fe6906c87d895d7d92853386e2f5
19 lines
434 B
Bash
Executable File
19 lines
434 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (C) 2018-2019 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
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 ..
|
|
|
|
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 ..
|