mirror of
https://github.com/javalsai/aoc.git
synced 2026-01-13 09:30:01 +01:00
16 lines
295 B
Bash
Executable File
16 lines
295 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euxo pipefail
|
|
|
|
rustup run nightly rustc \
|
|
--target x86_64-unknown-none \
|
|
-Crelocation-model=static \
|
|
\
|
|
-Copt-level=3 \
|
|
-Ctarget-cpu=native \
|
|
-Cpanic=abort \
|
|
-Cstrip=symbols \
|
|
-Coverflow_checks=n \
|
|
-Clto \
|
|
\
|
|
$* -o main main.rs
|