aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index cbbcee29..06a0bf90 100644
--- a/Makefile
+++ b/Makefile
@@ -2,13 +2,10 @@ BIN=target/release/garage
DOCKER=lxpz/garage_amd64
all:
- #cargo fmt || true
- #RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build
- clear; cargo build
+ clear; RUSTFLAGS="-C link-arg=-fuse-ld=lld -C target-cpu=x86-64 -C target-feature=+sse2" cargo build --no-default-features
$(BIN):
- #RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build --release
- cargo build --release
+ RUSTFLAGS="-C link-arg=-fuse-ld=lld -C target-cpu=x86-64 -C target-feature=+sse2" cargo build --release --no-default-features
$(BIN).stripped: $(BIN)
cp $^ $@