This repository has been archived on 2022-01-17. You can view files and clone it, but cannot push or open issues/pull-requests.
2019-08-03 12:06:11 +02:00
|
|
|
name: clang
|
|
|
|
version: 8.0.1
|
|
|
|
release: 1
|
|
|
|
sources: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/cfe-%{version}.src.tar.xz
|
|
|
|
dirname: build
|
2019-09-06 00:14:41 +02:00
|
|
|
|
2019-08-03 12:06:11 +02:00
|
|
|
@configure
|
2019-09-06 00:14:41 +02:00
|
|
|
mkdir %{dirname}
|
|
|
|
cd %{dirname}
|
|
|
|
cmake ../cfe-%{version}.src \
|
|
|
|
-DCMAKE_PREFIX_PATH=/usr/bad/llvm-8 \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release
|
2019-08-03 12:06:11 +02:00
|
|
|
|