2020-10-04 12:00:33 +03:00
|
|
|
CC=clang
|
|
|
|
CXX=clang++
|
2020-09-29 09:05:29 +03:00
|
|
|
|
2020-10-09 14:47:45 +03:00
|
|
|
CURRENT_DIR=$(shell pwd)
|
|
|
|
TBB_LIBDIR=$(wildcard $(CURRENT_DIR)/oneTBB/build/linux_intel64_*_release/)
|
2021-01-18 06:54:28 +03:00
|
|
|
MALLOC_LIBDIR=$(CURRENT_DIR)/mimalloc/out/release
|
2020-10-09 14:47:45 +03:00
|
|
|
|
2021-03-15 09:35:15 +03:00
|
|
|
CPPFLAGS=-g -IoneTBB/include -IxxHash -pthread -std=c++20 \
|
2021-03-25 12:02:42 +03:00
|
|
|
-Wno-deprecated-volatile -Wno-switch -O2 \
|
2021-03-23 14:49:59 +03:00
|
|
|
-DGIT_HASH=\"$(shell git rev-parse HEAD)\"
|
2021-01-15 05:08:57 +03:00
|
|
|
LDFLAGS=-L$(TBB_LIBDIR) -Wl,-rpath=$(TBB_LIBDIR) \
|
2021-03-15 09:35:15 +03:00
|
|
|
-L$(MALLOC_LIBDIR) -Wl,-rpath=$(MALLOC_LIBDIR) \
|
|
|
|
-L$(CURRENT_DIR)/xxHash
|
|
|
|
LIBS=-lcrypto -pthread -ltbb -lmimalloc -lz xxHash/libxxhash.a
|
2020-11-19 03:24:10 +03:00
|
|
|
OBJS=main.o object_file.o input_sections.o output_chunks.o mapfile.o perf.o \
|
2021-01-27 12:18:11 +03:00
|
|
|
linker_script.o archive_file.o output_file.o subprocess.o gc_sections.o \
|
2021-03-29 14:55:27 +03:00
|
|
|
icf.o symbols.o cmdline.o filepath.o glob.o
|
2020-10-02 07:28:26 +03:00
|
|
|
|
2021-03-25 10:03:23 +03:00
|
|
|
all: mold mold-wrapper.so
|
|
|
|
|
2020-10-20 08:54:35 +03:00
|
|
|
mold: $(OBJS)
|
2020-11-30 11:06:52 +03:00
|
|
|
$(CXX) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS) $(LIBS)
|
2021-03-25 10:03:23 +03:00
|
|
|
|
|
|
|
mold-wrapper.so: mold-wrapper.c Makefile
|
|
|
|
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
|
|
|
|
2021-01-15 05:08:57 +03:00
|
|
|
submodules:
|
2020-09-29 09:05:29 +03:00
|
|
|
$(MAKE) -C oneTBB
|
2021-01-18 06:54:28 +03:00
|
|
|
mkdir -p mimalloc/out/release
|
|
|
|
(cd mimalloc/out/release; cmake ../..)
|
|
|
|
$(MAKE) -C mimalloc/out/release
|
2021-03-15 09:35:15 +03:00
|
|
|
$(MAKE) -C xxHash
|
2020-09-29 09:05:29 +03:00
|
|
|
|
2020-10-20 08:54:35 +03:00
|
|
|
test: mold
|
2021-03-01 10:28:16 +03:00
|
|
|
for i in test/*.sh; do $$i || exit 1; done
|
2020-09-29 09:05:29 +03:00
|
|
|
|
|
|
|
clean:
|
2021-03-25 10:03:23 +03:00
|
|
|
rm -f *.o *~ mold mold-wrapper.so
|
2020-09-29 09:05:29 +03:00
|
|
|
|
2021-03-25 10:03:23 +03:00
|
|
|
.PHONY: all intel_tbb test clean
|