mirror of
https://github.com/llvm/llvm-project.git
synced 2025-05-16 19:06:06 +00:00

Summary: To my knowledge we don't actually use or need these rules. And if we need them then there is probably a better way to implement this than having all these random regexes. Reviewers: labath, JDevlieghere Reviewed By: labath, JDevlieghere Subscribers: jingham, lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D74126
10 lines
222 B
Makefile
10 lines
222 B
Makefile
CXX_SOURCES := main.cpp
|
|
LD_EXTRAS := -Wl,--build-id=none
|
|
|
|
all: stripped.out
|
|
|
|
stripped.out : a.out
|
|
$(OBJCOPY) --remove-section=.note.gnu.build-id --remove-section=.gnu_debuglink --strip-debug $< $@
|
|
|
|
include Makefile.rules
|