Skip to content

Commit 7c22da6

Browse files
ViralBShahfxcoudert
authored andcommitted
Allow libquadmath to also fail as it is not available on all systems (#54605)
Fix #41613. Co-authored-by: FX Coudert <[email protected]> (cherry picked from commit e5549c2)
1 parent 48d4fd4 commit 7c22da6

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
@@ -243,12 +243,12 @@ endif
243243
ifneq (,$(LIBGFORTRAN_VERSION))
244244
$(eval $(call symlink_system_library,CSL,libgfortran,$(LIBGFORTRAN_VERSION)))
245245
endif
246-
$(eval $(call symlink_system_library,CSL,libquadmath,0))
247246
$(eval $(call symlink_system_library,CSL,libstdc++,6))
248-
# We allow libssp, libatomic and libgomp to fail as they are not available on all systems
247+
# We allow libssp, libatomic, libgomp and libquadmath to fail as they are not available on all systems
249248
$(eval $(call symlink_system_library,CSL,libssp,0,ALLOW_FAILURE))
250249
$(eval $(call symlink_system_library,CSL,libatomic,1,ALLOW_FAILURE))
251250
$(eval $(call symlink_system_library,CSL,libgomp,1,ALLOW_FAILURE))
251+
$(eval $(call symlink_system_library,CSL,libquadmath,0,ALLOW_FAILURE))
252252
$(eval $(call symlink_system_library,PCRE,libpcre2-8))
253253
$(eval $(call symlink_system_library,DSFMT,libdSFMT))
254254
$(eval $(call symlink_system_library,LIBBLASTRAMPOLINE,libblastrampoline))

0 commit comments

Comments
 (0)