diff options
Diffstat (limited to 'packages/dev-libs/compiler-rt/compiler-rt.exlib')
-rw-r--r-- | packages/dev-libs/compiler-rt/compiler-rt.exlib | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/packages/dev-libs/compiler-rt/compiler-rt.exlib b/packages/dev-libs/compiler-rt/compiler-rt.exlib index e8e963cb4..780469d38 100644 --- a/packages/dev-libs/compiler-rt/compiler-rt.exlib +++ b/packages/dev-libs/compiler-rt/compiler-rt.exlib @@ -3,11 +3,7 @@ # Copyright 2012 Elias Pipping <pipping@exherbo.org> # Distributed under the terms of the GNU General Public License v2 -if ever at_least 9.0; then - require llvm-project [ slotted=true rtlib=true stdlib=true ] -else - require llvm-project [ slotted=true stdlib=true ] -fi +require llvm-project [ slotted=true rtlib=true stdlib=true ] export_exlib_phases src_prepare src_configure @@ -34,13 +30,6 @@ DEPENDENCIES=" ) " -if ! ever at_least 9.0; then - DEPENDENCIES+=" - build+run: - sys-libs/libgcc:= - " -fi - CMAKE_SRC_CONFIGURE_PARAMS+=( '-DCOMPILER_RT_BUILD_BUILTINS:BOOL=ON' '-DCOMPILER_RT_BUILD_CRT:BOOL=ON' @@ -82,9 +71,7 @@ compiler-rt_src_configure() { local resource_dir=$(${clang_exe} -print-resource-dir) local args=( -DCOMPILER_RT_INSTALL_PATH=${resource_dir} ) - if ever at_least 9.0; then - option providers:compiler-rt && args+=( -DCOMPILER_RT_USE_BUILTINS_LIBRARY:BOOL=ON ) - fi + option providers:compiler-rt && args+=( -DCOMPILER_RT_USE_BUILTINS_LIBRARY:BOOL=ON ) if option providers:libc++; then args+=( |