diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2024-01-01 12:29:41 +0100 |
---|---|---|
committer | Thierry Thomas <thierry@FreeBSD.org> | 2024-01-01 12:29:41 +0100 |
commit | 3eba17d8241bcf4c0ebc213ba246f6111f1770b3 (patch) | |
tree | 7c9bc869624383fcedc13f115bb719c643c46614 | |
parent | multimedia/uxplay: Update to 1.68 (diff) |
net/mpich: real fix for clang-17
This replaces the previous work-around and the need of an external
compiler.
For detailed explanations, see PR 276035.
PR: 276035
-rw-r--r-- | net/mpich/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/mpich/Makefile b/net/mpich/Makefile index e7164f5dfc08..0a356031c872 100644 --- a/net/mpich/Makefile +++ b/net/mpich/Makefile @@ -80,8 +80,8 @@ CONFIGURE_ARGS= --enable-fast="" \ .if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1500005 # linker error when compiling with llvm 17.0.6 on CURRENT - PR 276035 -USES+= llvm:lib,max=16 -CHOSEN_COMPILER_TYPE= clang +# To be removed with llvm-18 +CONFIGURE_ENV+= ac_cv_sizeof___float128=0 .endif .for pm in ${OPTIONS_GROUP_PM} |