remove musl builds
This commit is contained in:
parent
d4716c4bc6
commit
25eb73ae55
2 changed files with 3 additions and 37 deletions
|
@ -31,7 +31,6 @@ endif
|
|||
#endif
|
||||
|
||||
RUST_TARGET_DIR := $(REPO_ROOT)/target/$(TARGET)/$(CFG_PROFILE)
|
||||
OUT_DIR := $(realpath $(THIS_DIR)/out/)
|
||||
|
||||
ifeq ($(CFG_PROFILE), size-optimized)
|
||||
CARGO_PROFILE := size-optimized
|
||||
|
@ -92,7 +91,7 @@ all: $(_bins)
|
|||
clean: clean-c clean-rust
|
||||
|
||||
clean-c:
|
||||
rm -r $(OUT_DIR) || true
|
||||
rm -r out || true
|
||||
|
||||
clean-rust:
|
||||
rm $(SERVICEPOINT_HEADER_OUT)/servicepoint.h || true
|
||||
|
@ -123,7 +122,7 @@ sizes: $(_bins)
|
|||
ls -lB out
|
||||
|
||||
analyze-size: out/$(BIN)_unstripped
|
||||
nm --print-size --size-sort --reverse-sort --radix=d --demangle $(OUT_DIR)/$(BIN)_unstripped \
|
||||
nm --print-size --size-sort --reverse-sort --radix=d --demangle out/$(BIN)_unstripped \
|
||||
| awk '{size=$$2+0; print size "\t" $$4}' \
|
||||
| less
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue