forked from M-Labs/nac3
7 lines
438 B
Bash
7 lines
438 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# Uses rustup to compile the linalg library for i386 and x86_84 architecture
|
||
|
|
||
|
nix-shell -p rustup --command "RUSTC_BOOTSTRAP=1 cargo build -Z unstable-options --target x86_64-unknown-linux-gnu --out-dir liblinalg/x86_64"
|
||
|
nix-shell -p rustup --command "RUSTC_BOOTSTRAP=1 RUSTFLAGS=\"-C target-cpu=i386 -C target-feature=+sse2\" cargo build -Z unstable-options --target i686-unknown-linux-gnu --out-dir liblinalg/i386"
|