mirror of
https://github.com/engineer-man/piston.git
synced 2025-04-20 20:16:26 +02:00
Updated to Julia 1.8.5
This commit is contained in:
parent
86d897d580
commit
6524db168f
5 changed files with 35 additions and 0 deletions
21
packages/julia/1.8.5/build.sh
vendored
Normal file
21
packages/julia/1.8.5/build.sh
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Install location
|
||||||
|
PREFIX=$(realpath $(dirname $0))
|
||||||
|
|
||||||
|
mkdir -p build
|
||||||
|
cd build
|
||||||
|
|
||||||
|
# Download and extract Julia source
|
||||||
|
curl -L "https://github.com/JuliaLang/julia/releases/download/v1.8.5/julia-1.8.5.tar.gz" -o julia.tar.gz
|
||||||
|
tar xzf julia.tar.gz --strip-components=1
|
||||||
|
|
||||||
|
# Build
|
||||||
|
echo "JULIA_CPU_TARGET=generic;sandybridge,-xsaveopt,clone_all;haswell,-rdrnd,base(1)
|
||||||
|
prefix=$PREFIX" > Make.user
|
||||||
|
make -j$(nproc)
|
||||||
|
make install -j$(nproc)
|
||||||
|
|
||||||
|
# Cleanup
|
||||||
|
cd ..
|
||||||
|
rm -rf build
|
4
packages/julia/1.8.5/environment
vendored
Normal file
4
packages/julia/1.8.5/environment
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Add Julia binary to path
|
||||||
|
export PATH=$PWD/bin:$PATH
|
5
packages/julia/1.8.5/metadata.json
vendored
Normal file
5
packages/julia/1.8.5/metadata.json
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
{
|
||||||
|
"language": "julia",
|
||||||
|
"version": "1.8.5",
|
||||||
|
"aliases": ["jl"]
|
||||||
|
}
|
4
packages/julia/1.8.5/run
vendored
Normal file
4
packages/julia/1.8.5/run
vendored
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# Run without startup or history file
|
||||||
|
julia --startup-file=no --history-file=no "$@"
|
1
packages/julia/1.8.5/test.jl
vendored
Normal file
1
packages/julia/1.8.5/test.jl
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
println("OK")
|
Loading…
Add table
Add a link
Reference in a new issue