Compare commits
No commits in common. "e859f83cefea9f94c7dd085855a418031062e758" and "64e95f63e071c1895420e5486a5ce87c76f727c7" have entirely different histories.
e859f83cef
...
64e95f63e0
|
@ -1,21 +0,0 @@
|
||||||
#!/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.6.1/julia-1.6.1.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
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Add Julia binary to path
|
|
||||||
export PATH=$PWD/bin:$PATH
|
|
|
@ -1,5 +0,0 @@
|
||||||
{
|
|
||||||
"language": "julia",
|
|
||||||
"version": "1.6.1",
|
|
||||||
"aliases": ["jl"]
|
|
||||||
}
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/usr/bin/env bash
|
|
||||||
|
|
||||||
# Run without startup or history file
|
|
||||||
julia --startup-file=no --history-file=no "$@"
|
|
|
@ -1 +0,0 @@
|
||||||
println("OK")
|
|
|
@ -1,4 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
curl "https://nodejs.org/dist/v16.3.0/node-v16.3.0-linux-x64.tar.xz" -o node.tar.xz
|
|
||||||
tar xf node.tar.xz --strip-components=1
|
|
||||||
rm node.tar.xz
|
|
|
@ -1 +0,0 @@
|
||||||
export PATH=$PWD/bin:$PATH
|
|
|
@ -1,10 +0,0 @@
|
||||||
{
|
|
||||||
"language": "node",
|
|
||||||
"version": "16.3.0",
|
|
||||||
"provides": [
|
|
||||||
{
|
|
||||||
"language": "javascript",
|
|
||||||
"aliases": ["node-javascript", "node-js", "javascript", "js"]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
|
@ -1,3 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
node "$@"
|
|
|
@ -1 +0,0 @@
|
||||||
console.log("OK")
|
|
Loading…
Reference in New Issue