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-26 21:59:25 +02:00
|
|
|
name: libcxx
|
|
|
|
version: 8.0.1
|
|
|
|
sources: https://github.com/llvm/llvm-project/releases/download/llvmorg-%{version}/%{name}-%{version}.src.tar.xz
|
|
|
|
|
|
|
|
@configure
|
|
|
|
mkdir %{name}-%{version}
|
|
|
|
cd %{name}-%{version}
|
2019-09-06 00:15:44 +02:00
|
|
|
cmake ../%{name}-%{version}.src \
|
2019-08-26 21:59:25 +02:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr/weirdos \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_CXX_FLAGS="-fPIC -O2" \
|
|
|
|
-DCMAKE_C_FLAGS="-fPIC -O2"
|
|
|
|
|