File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed
stdlib/CompilerSupportLibraries_jll Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ libstdcxx_handle = C_NULL
2121libstdcxx_path = " "
2222libgomp_handle = C_NULL
2323libgomp_path = " "
24- libssp_handle = C_NULL
25- libssp_path = " "
2624
2725if Sys. iswindows ()
2826 if arch (HostPlatform ()) == " x86_64"
@@ -64,8 +62,7 @@ function __init__()
6462 global libgomp_handle = dlopen (libgomp)
6563 global libgomp_path = dlpath (libgomp_handle)
6664 @static if libc (HostPlatform ()) != " musl"
67- global libssp_handle = dlopen (libssp)
68- global libssp_path = dlpath (libssp_handle)
65+ dlopen (libssp; throw_error = false )
6966 end
7067 global artifact_dir = dirname (Sys. BINDIR)
7168 LIBPATH[] = dirname (libgcc_s_path)
Original file line number Diff line number Diff line change 11# This file is a part of Julia. License is MIT: https://julialang.org/license
22
3- using Test, CompilerSupportLibraries_jll, Base . BinaryPlatforms
3+ using Test, CompilerSupportLibraries_jll
44
55@testset " CompilerSupportLibraries_jll" begin
66 @test isfile (CompilerSupportLibraries_jll. libgcc_s_path)
77 @test isfile (CompilerSupportLibraries_jll. libgfortran_path)
88 @test isfile (CompilerSupportLibraries_jll. libstdcxx_path)
99 @test isfile (CompilerSupportLibraries_jll. libgomp_path)
10- if libc (HostPlatform ()) != " musl"
11- @test isfile (CompilerSupportLibraries_jll. libssp_path)
12- end
1310end
You can’t perform that action at this time.
0 commit comments