diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-03-13 20:30:07 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-03-13 20:30:07 +0000 |
commit | 9c636934a0cbe7c5b1644ed3688a2a2cb3518d3f (patch) | |
tree | 3e8e5db9d2e2a229c2978e55217f263f0a27ae6d /make/ext2root.mk | |
parent | 5b89b722a2c6c723a2b59ab3b950d16e6872eca8 (diff) |
Do not blindly strip all symbols from from all libs. libpthread
needs its symbols for pthread debugging to work. Let it be a
local decision.
Diffstat (limited to 'make/ext2root.mk')
-rw-r--r-- | make/ext2root.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/ext2root.mk b/make/ext2root.mk index f9c79b000..889cb05a9 100644 --- a/make/ext2root.mk +++ b/make/ext2root.mk @@ -40,7 +40,7 @@ GENEXT2_INODES=$(shell expr $(shell find $(TARGET_DIR) | wc -l) + 400) #GENEXT2_SIZE=100000 ext2root: genext2fs - -@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true; + #-@find $(TARGET_DIR)/lib -type f -name \*.so\* | xargs $(STRIP) --strip-unneeded 2>/dev/null || true; -@find $(TARGET_DIR) -type f -perm +111 | xargs $(STRIP) 2>/dev/null || true; $(GENEXT2_DIR)/genext2fs -i $(GENEXT2_INODES) -b $(GENEXT2_SIZE) \ -d $(TARGET_DIR) -q -D $(SOURCE_DIR)/device_table.txt $(IMAGE) |