1
1
mirror of https://github.com/rui314/mold.git synced 2024-12-26 18:02:30 +03:00

Rename catld chibild

This commit is contained in:
Rui Ueyama 2020-10-08 17:47:49 +09:00
parent b4a3208d85
commit f8a1ec959a
5 changed files with 7 additions and 7 deletions

2
.gitignore vendored
View File

@ -1,4 +1,4 @@
*.o
*~
/catld
/chibild
test/Output

View File

@ -8,10 +8,10 @@ LDFLAGS=$(shell $(LLVM_CONFIG) --ldflags)
LIBS=-pthread -lLLVMSupport -lLLVMObject -lLLVMOption -lcurses
OBJS=main.o writer.o
catld: $(OBJS)
chibild: $(OBJS)
$(CXX) $(CFLAGS) $(OBJS) -o $@ $(LDFLAGS) $(LIBS)
$(OBJS): catld.h Makefile
$(OBJS): chibild.h Makefile
main.cc: options.inc
@ -28,10 +28,10 @@ llvm:
intel_tbb:
$(MAKE) -C oneTBB
test: catld
test: chibild
./llvm-project/build/bin/llvm-lit test
clean:
rm -f *.o *~ catld options.inc
rm -f *.o *~ chibild options.inc
.PHONY: llvm intel_tbb test clean

View File

View File

@ -1,4 +1,4 @@
#include "catld.h"
#include "chibild.h"
#include "llvm/Option/ArgList.h"
#include <iostream>

View File

@ -1,4 +1,4 @@
#include "catld.h"
#include "chibild.h"
#include "llvm/Support/FileOutputBuffer.h"