Skip to content

Commit

Permalink
feat: build in more env
Browse files Browse the repository at this point in the history
  • Loading branch information
yukota committed Jan 22, 2019
1 parent e30d166 commit 119ca19
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
8 changes: 5 additions & 3 deletions Manifest.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# This file is machine-generated - editing it directly is not advised

[[Base64]]
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"

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

[[Distributed]]
deps = ["LinearAlgebra", "Random", "Serialization", "Sockets"]
deps = ["Random", "Serialization", "Sockets"]
uuid = "8ba89e20-285c-5b6f-9357-94700520ee1b"

[[FileIO]]
Expand Down Expand Up @@ -68,7 +70,7 @@ uuid = "83e8ac13-25f8-5344-8a64-a9f2b223428f"
version = "0.5.0"

[[InteractiveUtils]]
deps = ["LinearAlgebra", "Markdown"]
deps = ["Markdown"]
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"

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

[[UUIDs]]
deps = ["Random"]
deps = ["Random", "SHA"]
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"

[[Unicode]]
Expand Down
6 changes: 4 additions & 2 deletions build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ cd json-c/
mkdir build
cd build/
cmake .. -DCMAKE_INSTALL_PREFIX=$prefix -DCMAKE_TOOLCHAIN_FILE=/opt/$target/$target.toolchain
make
make -j${nproc}
make install
exit
Expand All @@ -28,7 +28,9 @@ exit
# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = [
Linux(:x86_64, libc=:glibc)
Linux(:x86_64, libc=:musl),
Linux(:x86_64, libc=:glibc),
Linux(:i686, libc=:glibc)
]

# The products that we will ensure are always built
Expand Down

0 comments on commit 119ca19

Please sign in to comment.