mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-03 03:29:38 +00:00
9b34ffd964
This is a dependency of gcc.
13 lines
484 B
Bash
Executable file
13 lines
484 B
Bash
Executable file
#!/usr/bin/env -S bash ../.port_include.sh
|
|
port=isl
|
|
version=0.24
|
|
useconfigure=true
|
|
use_fresh_config_sub=true
|
|
files="https://libisl.sourceforge.io/isl-${version}.tar.xz isl-${version}.tar.xz 043105cc544f416b48736fff8caf077fb0663a717d06b1113f16e391ac99ebad"
|
|
auth_type=sha256
|
|
depends=("gmp")
|
|
|
|
if [ "$SERENITY_TOOLCHAIN" = "Clang" ]; then
|
|
# This test fails with Clang because it doesn't let you take the address of compiler intrinsics.
|
|
export ac_cv_have_decl___builtin_ffs=yes
|
|
fi
|