Skip to content

Commit e5549c2

Browse files
Allow libquadmath to also fail as it is not available on all systems (#54605)
Fix #41613. Co-authored-by: FX Coudert <fxcoudert@gmail.com>
1 parent c11245d commit e5549c2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

base/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,12 +249,12 @@ endif
249249
ifneq (,$(LIBGFORTRAN_VERSION))
250250
$(eval $(call symlink_system_library,CSL,libgfortran,$(LIBGFORTRAN_VERSION)))
251251
endif
252-
$(eval $(call symlink_system_library,CSL,libquadmath,0))
253252
$(eval $(call symlink_system_library,CSL,libstdc++,6))
254-
# We allow libssp, libatomic and libgomp to fail as they are not available on all systems
253+
# We allow libssp, libatomic, libgomp and libquadmath to fail as they are not available on all systems
255254
$(eval $(call symlink_system_library,CSL,libssp,0,ALLOW_FAILURE))
256255
$(eval $(call symlink_system_library,CSL,libatomic,1,ALLOW_FAILURE))
257256
$(eval $(call symlink_system_library,CSL,libgomp,1,ALLOW_FAILURE))
257+
$(eval $(call symlink_system_library,CSL,libquadmath,0,ALLOW_FAILURE))
258258
$(eval $(call symlink_system_library,PCRE,libpcre2-8))
259259
$(eval $(call symlink_system_library,DSFMT,libdSFMT))
260260
$(eval $(call symlink_system_library,LIBBLASTRAMPOLINE,libblastrampoline))

0 commit comments

Comments
 (0)