Skip to content

Commit e3c529f

Browse files
committed
CompilerSupportLibraries_jll build 0.2.0+1
1 parent f5fb788 commit e3c529f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1298
-1298
lines changed

Artifacts.toml

Lines changed: 202 additions & 202 deletions
Large diffs are not rendered by default.

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "CompilerSupportLibraries_jll"
22
uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae"
3-
version = "0.2.0+0"
3+
version = "0.2.0+1"
44

55
[deps]
66
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

src/wrappers/aarch64-linux-gnu-libgfortran3.jl

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
# Autogenerated wrapper script for CompilerSupportLibraries_jll for aarch64-linux-gnu-libgfortran3
2-
export libgomp, libgcc_s, libgfortran, libstdcxx
2+
export libstdcxx, libgomp, libgfortran, libgcc_s
33

44
## Global variables
55
PATH = ""
66
LIBPATH = ""
77
LIBPATH_env = "LD_LIBRARY_PATH"
88

9-
# Relative path to `libgomp`
10-
const libgomp_splitpath = ["lib", "libgomp.so"]
9+
# Relative path to `libstdcxx`
10+
const libstdcxx_splitpath = ["lib", "libstdc++.so"]
1111

1212
# This will be filled out by __init__() for all products, as it must be done at runtime
13-
libgomp_path = ""
13+
libstdcxx_path = ""
1414

15-
# libgomp-specific global declaration
15+
# libstdcxx-specific global declaration
1616
# This will be filled out by __init__()
17-
libgomp_handle = C_NULL
17+
libstdcxx_handle = C_NULL
1818

1919
# This must be `const` so that we can use it with `ccall()`
20-
const libgomp = "libgomp.so.1"
20+
const libstdcxx = "libstdc++.so.6"
2121

2222

23-
# Relative path to `libgcc_s`
24-
const libgcc_s_splitpath = ["lib", "libgcc_s.so"]
23+
# Relative path to `libgomp`
24+
const libgomp_splitpath = ["lib", "libgomp.so"]
2525

2626
# This will be filled out by __init__() for all products, as it must be done at runtime
27-
libgcc_s_path = ""
27+
libgomp_path = ""
2828

29-
# libgcc_s-specific global declaration
29+
# libgomp-specific global declaration
3030
# This will be filled out by __init__()
31-
libgcc_s_handle = C_NULL
31+
libgomp_handle = C_NULL
3232

3333
# This must be `const` so that we can use it with `ccall()`
34-
const libgcc_s = "libgcc_s.so.1"
34+
const libgomp = "libgomp.so.1"
3535

3636

3737
# Relative path to `libgfortran`
@@ -48,18 +48,18 @@ libgfortran_handle = C_NULL
4848
const libgfortran = "libgfortran.so.3"
4949

5050

51-
# Relative path to `libstdcxx`
52-
const libstdcxx_splitpath = ["lib", "libstdc++.so"]
51+
# Relative path to `libgcc_s`
52+
const libgcc_s_splitpath = ["lib", "libgcc_s.so"]
5353

5454
# This will be filled out by __init__() for all products, as it must be done at runtime
55-
libstdcxx_path = ""
55+
libgcc_s_path = ""
5656

57-
# libstdcxx-specific global declaration
57+
# libgcc_s-specific global declaration
5858
# This will be filled out by __init__()
59-
libstdcxx_handle = C_NULL
59+
libgcc_s_handle = C_NULL
6060

6161
# This must be `const` so that we can use it with `ccall()`
62-
const libstdcxx = "libstdc++.so.6"
62+
const libgcc_s = "libgcc_s.so.1"
6363

6464

6565
"""
@@ -70,19 +70,19 @@ function __init__()
7070

7171
# Initialize PATH and LIBPATH environment variable listings
7272
global PATH_list, LIBPATH_list
73-
global libgomp_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgomp_splitpath...))
73+
global libstdcxx_path = abspath(joinpath(artifact"CompilerSupportLibraries", libstdcxx_splitpath...))
7474

7575
# Manually `dlopen()` this right now so that future invocations
7676
# of `ccall` with its `SONAME` will find this path immediately.
77-
global libgomp_handle = dlopen(libgomp_path)
78-
push!(LIBPATH_list, dirname(libgomp_path))
77+
global libstdcxx_handle = dlopen(libstdcxx_path)
78+
push!(LIBPATH_list, dirname(libstdcxx_path))
7979

80-
global libgcc_s_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgcc_s_splitpath...))
80+
global libgomp_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgomp_splitpath...))
8181

8282
# Manually `dlopen()` this right now so that future invocations
8383
# of `ccall` with its `SONAME` will find this path immediately.
84-
global libgcc_s_handle = dlopen(libgcc_s_path)
85-
push!(LIBPATH_list, dirname(libgcc_s_path))
84+
global libgomp_handle = dlopen(libgomp_path)
85+
push!(LIBPATH_list, dirname(libgomp_path))
8686

8787
global libgfortran_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgfortran_splitpath...))
8888

@@ -91,12 +91,12 @@ function __init__()
9191
global libgfortran_handle = dlopen(libgfortran_path)
9292
push!(LIBPATH_list, dirname(libgfortran_path))
9393

94-
global libstdcxx_path = abspath(joinpath(artifact"CompilerSupportLibraries", libstdcxx_splitpath...))
94+
global libgcc_s_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgcc_s_splitpath...))
9595

9696
# Manually `dlopen()` this right now so that future invocations
9797
# of `ccall` with its `SONAME` will find this path immediately.
98-
global libstdcxx_handle = dlopen(libstdcxx_path)
99-
push!(LIBPATH_list, dirname(libstdcxx_path))
98+
global libgcc_s_handle = dlopen(libgcc_s_path)
99+
push!(LIBPATH_list, dirname(libgcc_s_path))
100100

101101
# Filter out duplicate and empty entries in our PATH and LIBPATH entries
102102
filter!(!isempty, unique!(PATH_list))

src/wrappers/aarch64-linux-gnu-libgfortran4.jl

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
# Autogenerated wrapper script for CompilerSupportLibraries_jll for aarch64-linux-gnu-libgfortran4
2-
export libgomp, libgcc_s, libgfortran, libstdcxx
2+
export libstdcxx, libgomp, libgfortran, libgcc_s
33

44
## Global variables
55
PATH = ""
66
LIBPATH = ""
77
LIBPATH_env = "LD_LIBRARY_PATH"
88

9-
# Relative path to `libgomp`
10-
const libgomp_splitpath = ["lib", "libgomp.so"]
9+
# Relative path to `libstdcxx`
10+
const libstdcxx_splitpath = ["lib", "libstdc++.so"]
1111

1212
# This will be filled out by __init__() for all products, as it must be done at runtime
13-
libgomp_path = ""
13+
libstdcxx_path = ""
1414

15-
# libgomp-specific global declaration
15+
# libstdcxx-specific global declaration
1616
# This will be filled out by __init__()
17-
libgomp_handle = C_NULL
17+
libstdcxx_handle = C_NULL
1818

1919
# This must be `const` so that we can use it with `ccall()`
20-
const libgomp = "libgomp.so.1"
20+
const libstdcxx = "libstdc++.so.6"
2121

2222

23-
# Relative path to `libgcc_s`
24-
const libgcc_s_splitpath = ["lib", "libgcc_s.so"]
23+
# Relative path to `libgomp`
24+
const libgomp_splitpath = ["lib", "libgomp.so"]
2525

2626
# This will be filled out by __init__() for all products, as it must be done at runtime
27-
libgcc_s_path = ""
27+
libgomp_path = ""
2828

29-
# libgcc_s-specific global declaration
29+
# libgomp-specific global declaration
3030
# This will be filled out by __init__()
31-
libgcc_s_handle = C_NULL
31+
libgomp_handle = C_NULL
3232

3333
# This must be `const` so that we can use it with `ccall()`
34-
const libgcc_s = "libgcc_s.so.1"
34+
const libgomp = "libgomp.so.1"
3535

3636

3737
# Relative path to `libgfortran`
@@ -48,18 +48,18 @@ libgfortran_handle = C_NULL
4848
const libgfortran = "libgfortran.so.4"
4949

5050

51-
# Relative path to `libstdcxx`
52-
const libstdcxx_splitpath = ["lib", "libstdc++.so"]
51+
# Relative path to `libgcc_s`
52+
const libgcc_s_splitpath = ["lib", "libgcc_s.so"]
5353

5454
# This will be filled out by __init__() for all products, as it must be done at runtime
55-
libstdcxx_path = ""
55+
libgcc_s_path = ""
5656

57-
# libstdcxx-specific global declaration
57+
# libgcc_s-specific global declaration
5858
# This will be filled out by __init__()
59-
libstdcxx_handle = C_NULL
59+
libgcc_s_handle = C_NULL
6060

6161
# This must be `const` so that we can use it with `ccall()`
62-
const libstdcxx = "libstdc++.so.6"
62+
const libgcc_s = "libgcc_s.so.1"
6363

6464

6565
"""
@@ -70,19 +70,19 @@ function __init__()
7070

7171
# Initialize PATH and LIBPATH environment variable listings
7272
global PATH_list, LIBPATH_list
73-
global libgomp_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgomp_splitpath...))
73+
global libstdcxx_path = abspath(joinpath(artifact"CompilerSupportLibraries", libstdcxx_splitpath...))
7474

7575
# Manually `dlopen()` this right now so that future invocations
7676
# of `ccall` with its `SONAME` will find this path immediately.
77-
global libgomp_handle = dlopen(libgomp_path)
78-
push!(LIBPATH_list, dirname(libgomp_path))
77+
global libstdcxx_handle = dlopen(libstdcxx_path)
78+
push!(LIBPATH_list, dirname(libstdcxx_path))
7979

80-
global libgcc_s_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgcc_s_splitpath...))
80+
global libgomp_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgomp_splitpath...))
8181

8282
# Manually `dlopen()` this right now so that future invocations
8383
# of `ccall` with its `SONAME` will find this path immediately.
84-
global libgcc_s_handle = dlopen(libgcc_s_path)
85-
push!(LIBPATH_list, dirname(libgcc_s_path))
84+
global libgomp_handle = dlopen(libgomp_path)
85+
push!(LIBPATH_list, dirname(libgomp_path))
8686

8787
global libgfortran_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgfortran_splitpath...))
8888

@@ -91,12 +91,12 @@ function __init__()
9191
global libgfortran_handle = dlopen(libgfortran_path)
9292
push!(LIBPATH_list, dirname(libgfortran_path))
9393

94-
global libstdcxx_path = abspath(joinpath(artifact"CompilerSupportLibraries", libstdcxx_splitpath...))
94+
global libgcc_s_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgcc_s_splitpath...))
9595

9696
# Manually `dlopen()` this right now so that future invocations
9797
# of `ccall` with its `SONAME` will find this path immediately.
98-
global libstdcxx_handle = dlopen(libstdcxx_path)
99-
push!(LIBPATH_list, dirname(libstdcxx_path))
98+
global libgcc_s_handle = dlopen(libgcc_s_path)
99+
push!(LIBPATH_list, dirname(libgcc_s_path))
100100

101101
# Filter out duplicate and empty entries in our PATH and LIBPATH entries
102102
filter!(!isempty, unique!(PATH_list))

src/wrappers/aarch64-linux-gnu-libgfortran5.jl

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
11
# Autogenerated wrapper script for CompilerSupportLibraries_jll for aarch64-linux-gnu-libgfortran5
2-
export libgomp, libgcc_s, libgfortran, libstdcxx
2+
export libstdcxx, libgomp, libgfortran, libgcc_s
33

44
## Global variables
55
PATH = ""
66
LIBPATH = ""
77
LIBPATH_env = "LD_LIBRARY_PATH"
88

9-
# Relative path to `libgomp`
10-
const libgomp_splitpath = ["lib", "libgomp.so"]
9+
# Relative path to `libstdcxx`
10+
const libstdcxx_splitpath = ["lib", "libstdc++.so"]
1111

1212
# This will be filled out by __init__() for all products, as it must be done at runtime
13-
libgomp_path = ""
13+
libstdcxx_path = ""
1414

15-
# libgomp-specific global declaration
15+
# libstdcxx-specific global declaration
1616
# This will be filled out by __init__()
17-
libgomp_handle = C_NULL
17+
libstdcxx_handle = C_NULL
1818

1919
# This must be `const` so that we can use it with `ccall()`
20-
const libgomp = "libgomp.so.1"
20+
const libstdcxx = "libstdc++.so.6"
2121

2222

23-
# Relative path to `libgcc_s`
24-
const libgcc_s_splitpath = ["lib", "libgcc_s.so"]
23+
# Relative path to `libgomp`
24+
const libgomp_splitpath = ["lib", "libgomp.so"]
2525

2626
# This will be filled out by __init__() for all products, as it must be done at runtime
27-
libgcc_s_path = ""
27+
libgomp_path = ""
2828

29-
# libgcc_s-specific global declaration
29+
# libgomp-specific global declaration
3030
# This will be filled out by __init__()
31-
libgcc_s_handle = C_NULL
31+
libgomp_handle = C_NULL
3232

3333
# This must be `const` so that we can use it with `ccall()`
34-
const libgcc_s = "libgcc_s.so.1"
34+
const libgomp = "libgomp.so.1"
3535

3636

3737
# Relative path to `libgfortran`
@@ -48,18 +48,18 @@ libgfortran_handle = C_NULL
4848
const libgfortran = "libgfortran.so.5"
4949

5050

51-
# Relative path to `libstdcxx`
52-
const libstdcxx_splitpath = ["lib", "libstdc++.so"]
51+
# Relative path to `libgcc_s`
52+
const libgcc_s_splitpath = ["lib", "libgcc_s.so"]
5353

5454
# This will be filled out by __init__() for all products, as it must be done at runtime
55-
libstdcxx_path = ""
55+
libgcc_s_path = ""
5656

57-
# libstdcxx-specific global declaration
57+
# libgcc_s-specific global declaration
5858
# This will be filled out by __init__()
59-
libstdcxx_handle = C_NULL
59+
libgcc_s_handle = C_NULL
6060

6161
# This must be `const` so that we can use it with `ccall()`
62-
const libstdcxx = "libstdc++.so.6"
62+
const libgcc_s = "libgcc_s.so.1"
6363

6464

6565
"""
@@ -70,19 +70,19 @@ function __init__()
7070

7171
# Initialize PATH and LIBPATH environment variable listings
7272
global PATH_list, LIBPATH_list
73-
global libgomp_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgomp_splitpath...))
73+
global libstdcxx_path = abspath(joinpath(artifact"CompilerSupportLibraries", libstdcxx_splitpath...))
7474

7575
# Manually `dlopen()` this right now so that future invocations
7676
# of `ccall` with its `SONAME` will find this path immediately.
77-
global libgomp_handle = dlopen(libgomp_path)
78-
push!(LIBPATH_list, dirname(libgomp_path))
77+
global libstdcxx_handle = dlopen(libstdcxx_path)
78+
push!(LIBPATH_list, dirname(libstdcxx_path))
7979

80-
global libgcc_s_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgcc_s_splitpath...))
80+
global libgomp_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgomp_splitpath...))
8181

8282
# Manually `dlopen()` this right now so that future invocations
8383
# of `ccall` with its `SONAME` will find this path immediately.
84-
global libgcc_s_handle = dlopen(libgcc_s_path)
85-
push!(LIBPATH_list, dirname(libgcc_s_path))
84+
global libgomp_handle = dlopen(libgomp_path)
85+
push!(LIBPATH_list, dirname(libgomp_path))
8686

8787
global libgfortran_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgfortran_splitpath...))
8888

@@ -91,12 +91,12 @@ function __init__()
9191
global libgfortran_handle = dlopen(libgfortran_path)
9292
push!(LIBPATH_list, dirname(libgfortran_path))
9393

94-
global libstdcxx_path = abspath(joinpath(artifact"CompilerSupportLibraries", libstdcxx_splitpath...))
94+
global libgcc_s_path = abspath(joinpath(artifact"CompilerSupportLibraries", libgcc_s_splitpath...))
9595

9696
# Manually `dlopen()` this right now so that future invocations
9797
# of `ccall` with its `SONAME` will find this path immediately.
98-
global libstdcxx_handle = dlopen(libstdcxx_path)
99-
push!(LIBPATH_list, dirname(libstdcxx_path))
98+
global libgcc_s_handle = dlopen(libgcc_s_path)
99+
push!(LIBPATH_list, dirname(libgcc_s_path))
100100

101101
# Filter out duplicate and empty entries in our PATH and LIBPATH entries
102102
filter!(!isempty, unique!(PATH_list))

0 commit comments

Comments
 (0)