1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-21 09:57:18 +03:00
mold/Makefile

112 lines
2.9 KiB
Makefile
Raw Normal View History

2021-05-18 07:20:57 +03:00
CC = clang
CXX = clang++
GIT_HASH ?= $(shell [ -d .git ] && git rev-parse HEAD)
2021-05-18 07:20:57 +03:00
CPPFLAGS = -g -Imimalloc/include -pthread -std=c++20 \
2021-06-30 02:11:15 +03:00
-DMOLD_VERSION=\"0.9.1\" \
-DGIT_HASH=\"$(GIT_HASH)\" \
2021-05-18 07:20:57 +03:00
$(EXTRA_CPPFLAGS)
LDFLAGS += $(EXTRA_LDFLAGS)
LIBS = -Wl,-as-needed -lcrypto -pthread -lz -lxxhash -ldl -lm
2021-05-18 07:20:57 +03:00
OBJS = main.o object_file.o input_sections.o output_chunks.o \
mapfile.o perf.o linker_script.o archive_file.o output_file.o \
subprocess.o gc_sections.o icf.o symbols.o cmdline.o filepath.o \
2021-06-19 18:49:41 +03:00
passes.o tar.o compress.o memory_mapped_file.o relocatable.o \
concurrent_map.o hyperloglog.o \
arch_x86_64.o arch_i386.o arch_aarch64.o
2020-10-02 07:28:26 +03:00
PREFIX ?= /usr
2021-03-30 17:52:02 +03:00
DEBUG ?= 0
2021-05-17 17:33:30 +03:00
LTO ?= 0
ASAN ?= 0
TSAN ?= 0
2021-03-30 17:52:02 +03:00
ifeq ($(DEBUG), 1)
CPPFLAGS += -O0
else
CPPFLAGS += -O2
endif
2021-04-05 16:51:15 +03:00
ifeq ($(LTO), 1)
2021-04-07 12:52:38 +03:00
CPPFLAGS += -flto -O3
LDFLAGS += -flto
2021-04-05 16:51:15 +03:00
endif
2021-04-07 12:52:38 +03:00
ifeq ($(ASAN), 1)
2021-04-07 09:38:31 +03:00
CPPFLAGS += -fsanitize=address
2021-04-07 12:52:38 +03:00
LDFLAGS += -fsanitize=address
2021-05-18 07:20:57 +03:00
else
# By default, we want to use mimalloc as a memory allocator.
# Since replacing the standard malloc is not compatible with ASAN,
# we do that only when ASAN is not enabled.
ifdef SYSTEM_MIMALLOC
LIBS += -lmimalloc
else
MIMALLOC_LIB = out/mimalloc/libmimalloc.a
LIBS += -Wl,-whole-archive $(MIMALLOC_LIB) -Wl,-no-whole-archive
endif
2021-04-07 12:52:38 +03:00
endif
ifeq ($(TSAN), 1)
CPPFLAGS += -fsanitize=thread
LDFLAGS += -fsanitize=thread
2021-04-07 09:38:31 +03:00
endif
ifdef SYSTEM_TBB
LIBS += -ltbb
else
TBB_LIB = out/tbb/libs/libtbb.a
LIBS += $(TBB_LIB)
CPPFLAGS += -Itbb/include
endif
2021-03-25 10:03:23 +03:00
all: mold mold-wrapper.so
mold: $(OBJS) $(MIMALLOC_LIB) $(TBB_LIB)
$(CXX) $(CXXFLAGS) $(OBJS) -o $@ $(LDFLAGS) $(LIBS)
2021-07-03 14:48:38 +03:00
ln -sf mold ld
2021-03-25 10:03:23 +03:00
mold-wrapper.so: mold-wrapper.c Makefile
2021-05-18 14:12:28 +03:00
$(CC) -fPIC -shared -o $@ $< -ldl
2020-10-02 07:28:26 +03:00
2021-01-09 08:53:26 +03:00
$(OBJS): mold.h elf.h Makefile
2020-10-08 11:01:54 +03:00
$(MIMALLOC_LIB):
mkdir -p out/mimalloc
(cd out/mimalloc; CFLAGS=-DMI_USE_ENVIRON=0 cmake ../../mimalloc)
$(MAKE) -C out/mimalloc mimalloc-static
2020-09-29 09:05:29 +03:00
$(TBB_LIB):
mkdir -p out/tbb
(cd out/tbb; cmake -DBUILD_SHARED_LIBS=OFF -DTBB_TEST=OFF -DCMAKE_CXX_FLAGS=-D__TBB_DYNAMIC_LOAD_ENABLED=0 ../../tbb)
$(MAKE) -C out/tbb tbb
(cd out/tbb; ln -sf *_relwithdebinfo libs)
test tests check: all
2021-05-29 09:00:18 +03:00
$(MAKE) -C test --output-sync --no-print-directory
2020-09-29 09:05:29 +03:00
2021-05-14 14:41:21 +03:00
install: all
2021-07-03 09:06:06 +03:00
install -m 755 -d $(DESTDIR)$(PREFIX)/bin
install -m 755 mold $(DESTDIR)$(PREFIX)/bin
2021-07-01 13:05:43 +03:00
strip $(DESTDIR)$(PREFIX)/bin/mold
install -m 755 -d $(DESTDIR)$(PREFIX)/lib/mold
install -m 644 mold-wrapper.so $(DESTDIR)$(PREFIX)/lib/mold
strip $(DESTDIR)$(PREFIX)/lib/mold/mold-wrapper.so
install -m 755 -d $(DESTDIR)$(PREFIX)/share/man/man1
install -m 644 docs/mold.1 $(DESTDIR)$(PREFIX)/share/man/man1
rm -f $(DESTDIR)$(PREFIX)/share/man/man1/mold.1.gz
gzip -9 $(DESTDIR)$(PREFIX)/share/man/man1/mold.1
2021-05-14 14:41:21 +03:00
2021-05-17 16:56:58 +03:00
uninstall:
2021-07-03 09:06:06 +03:00
rm -f $(DESTDIR)$(PREFIX)/bin/mold
rm -f $(DESTDIR)$(PREFIX)/share/man/man1/mold.1.gz
rm -rf $(DESTDIR)$(PREFIX)/lib/mold
2021-05-17 16:56:58 +03:00
2020-09-29 09:05:29 +03:00
clean:
rm -rf *.o *~ mold mold-wrapper.so test/tmp out ld
2020-09-29 09:05:29 +03:00
2021-05-29 09:00:18 +03:00
.PHONY: all test tests check clean $(TESTS)