aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-07-07 17:15:53 +0200
committerAlex Auvolat <alex@adnab.me>2020-07-07 17:15:53 +0200
commitf22ecb60a8e1848de95e1bd3104b0ceec7058f0c (patch)
tree1e51db048f17295a070aae4025bfa16036a3c0fd /Makefile
parent3b0b11085e0501afcc16f6a75632a4d425146158 (diff)
downloadgarage-f22ecb60a8e1848de95e1bd3104b0ceec7058f0c.tar.gz
garage-f22ecb60a8e1848de95e1bd3104b0ceec7058f0c.zip
Update to Hyper 0.13.6 that accepts non-Sync streams in wrap_stream.
Simplifies code and makes it possible to publish on crates.io
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 58529634..61105856 100644
--- a/Makefile
+++ b/Makefile
@@ -3,10 +3,12 @@ DOCKER=lxpz/garage_amd64
all:
#cargo fmt || true
- RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build
+ #RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build
+ cargo build
$(BIN):
- RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build --release
+ #RUSTFLAGS="-C link-arg=-fuse-ld=lld" cargo build --release
+ cargo build --release
$(BIN).stripped: $(BIN)
cp $^ $@