Skip to content

Commit 119ca19

Browse files
committed
feat: build in more env
1 parent e30d166 commit 119ca19

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

Manifest.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
13
[[Base64]]
24
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
35

@@ -40,7 +42,7 @@ deps = ["Mmap"]
4042
uuid = "8bb1440f-4735-579b-a4ab-409b98df4dab"
4143

4244
[[Distributed]]
43-
deps = ["LinearAlgebra", "Random", "Serialization", "Sockets"]
45+
deps = ["Random", "Serialization", "Sockets"]
4446
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"
4547

4648
[[FileIO]]
@@ -68,7 +70,7 @@ uuid = "83e8ac13-25f8-5344-8a64-a9f2b223428f"
6870
version = "0.5.0"
6971

7072
[[InteractiveUtils]]
71-
deps = ["LinearAlgebra", "Markdown"]
73+
deps = ["Markdown"]
7274
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
7375

7476
[[JLD2]]
@@ -193,7 +195,7 @@ uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa"
193195
version = "0.8.1"
194196

195197
[[UUIDs]]
196-
deps = ["Random"]
198+
deps = ["Random", "SHA"]
197199
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
198200

199201
[[Unicode]]

build_tarballs.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ cd json-c/
1919
mkdir build
2020
cd build/
2121
cmake .. -DCMAKE_INSTALL_PREFIX=$prefix -DCMAKE_TOOLCHAIN_FILE=/opt/$target/$target.toolchain
22-
make
22+
make -j${nproc}
2323
make install
2424
exit
2525
@@ -28,7 +28,9 @@ exit
2828
# These are the platforms we will build for by default, unless further
2929
# platforms are passed in on the command line
3030
platforms = [
31-
Linux(:x86_64, libc=:glibc)
31+
Linux(:x86_64, libc=:musl),
32+
Linux(:x86_64, libc=:glibc),
33+
Linux(:i686, libc=:glibc)
3234
]
3335

3436
# The products that we will ensure are always built

0 commit comments

Comments
 (0)