mirror of
https://github.com/ldc-developers/ldc.git
synced 2025-05-04 09:00:33 +03:00

Changed runtime functions taking opaque[] to void[]. Implemented proper type painting, to avoid "resizing" array casts in runtime calls that previously took opaque[]. Implemented dynamic arrays as first class types, this implements proper ABI for these types on x86. Added dwarf region end after call to assert function, fixes some problems with llvm not allowing this to be missing. Reverted change to WithStatement from rev [704] it breaks MiniD, mini/with2.d needs to be fixed some other way... Fixed tango bug 1339 in runtime, problem with _adReverseChar on invalid UTF-8. Disabled .bc generation in the compiler runtime part, genobj.d triggers some llvm bug when using debug info. the .o seems to work fine.
261 lines
4.9 KiB
Makefile
261 lines
4.9 KiB
Makefile
# Makefile to build the LDC compiler runtime D library for Linux
|
|
# Designed to work with GNU make
|
|
# Targets:
|
|
# make
|
|
# Same as make all
|
|
# make lib
|
|
# Build the compiler runtime library
|
|
# make doc
|
|
# Generate documentation
|
|
# make clean
|
|
# Delete unneeded files created by build process
|
|
|
|
LIB_TARGET_FULL=libldc-runtime.a
|
|
LIB_TARGET_BC_ONLY=libldc-runtime-bc-only.a
|
|
LIB_TARGET_C_ONLY=libldc-runtime-c-only.a
|
|
LIB_TARGET_SHARED=libldc-runtime-shared.so
|
|
LIB_MASK=libldc-runtime*.*
|
|
|
|
|
|
CP=cp -f
|
|
RM=rm -f
|
|
MD=mkdir -p
|
|
|
|
#CFLAGS=-O3 $(ADD_CFLAGS)
|
|
CFLAGS=$(ADD_CFLAGS)
|
|
|
|
#DFLAGS=-release -O3 -inline -w $(ADD_DFLAGS)
|
|
DFLAGS=-w $(ADD_DFLAGS)
|
|
|
|
#TFLAGS=-O3 -inline -w $(ADD_DFLAGS)
|
|
TFLAGS=-w $(ADD_DFLAGS)
|
|
|
|
DOCFLAGS=-version=DDoc
|
|
|
|
CC=gcc
|
|
LC=llvm-ar rsv
|
|
LLINK=llvm-link
|
|
LCC=llc
|
|
CLC=ar rsv
|
|
DC=ldc
|
|
LLC=llvm-as
|
|
|
|
LIB_DEST=..
|
|
|
|
.SUFFIXES: .s .S .c .cpp .d .ll .html .o .bc
|
|
|
|
.s.o:
|
|
$(CC) -c $(CFLAGS) $< -o$@
|
|
|
|
.S.o:
|
|
$(CC) -c $(CFLAGS) $< -o$@
|
|
|
|
.c.o:
|
|
$(CC) -c $(CFLAGS) $< -o$@
|
|
|
|
.cpp.o:
|
|
g++ -c $(CFLAGS) $< -o$@
|
|
|
|
.d.o:
|
|
$(DC) -c $(DFLAGS) $< -of$@ -output-bc
|
|
|
|
.d.html:
|
|
$(DC) -c -o- $(DOCFLAGS) -Df$*.html ldc.ddoc $<
|
|
|
|
targets : lib sharedlib doc
|
|
all : lib sharedlib doc
|
|
#lib : ldc.bclib ldc.clib ldc.lib
|
|
lib : ldc.clib ldc.lib
|
|
sharedlib : ldc.sharedlib
|
|
doc : ldc.doc
|
|
|
|
######################################################
|
|
OBJ_C= \
|
|
monitor.o \
|
|
critical.o
|
|
|
|
OBJ_BASE_BC= \
|
|
aaA.bc \
|
|
aApply.bc \
|
|
aApplyR.bc \
|
|
adi.bc \
|
|
arrayInit.bc \
|
|
cast.bc \
|
|
dmain2.bc \
|
|
eh.bc \
|
|
genobj.bc \
|
|
lifetime.bc \
|
|
memory.bc \
|
|
qsort2.bc \
|
|
switch.bc \
|
|
invariant.bc
|
|
|
|
OBJ_UTIL_BC= \
|
|
util/console.bc \
|
|
util/ctype.bc \
|
|
util/string.bc \
|
|
util/utf.bc
|
|
|
|
OBJ_LDC_BC= \
|
|
ldc/bitmanip.bc \
|
|
ldc/vararg.bc
|
|
|
|
OBJ_TI_BC= \
|
|
typeinfo/ti_AC.bc \
|
|
typeinfo/ti_Acdouble.bc \
|
|
typeinfo/ti_Acfloat.bc \
|
|
typeinfo/ti_Acreal.bc \
|
|
typeinfo/ti_Adouble.bc \
|
|
typeinfo/ti_Afloat.bc \
|
|
typeinfo/ti_Ag.bc \
|
|
typeinfo/ti_Aint.bc \
|
|
typeinfo/ti_Along.bc \
|
|
typeinfo/ti_Areal.bc \
|
|
typeinfo/ti_Ashort.bc \
|
|
typeinfo/ti_byte.bc \
|
|
typeinfo/ti_C.bc \
|
|
typeinfo/ti_cdouble.bc \
|
|
typeinfo/ti_cfloat.bc \
|
|
typeinfo/ti_char.bc \
|
|
typeinfo/ti_creal.bc \
|
|
typeinfo/ti_dchar.bc \
|
|
typeinfo/ti_delegate.bc \
|
|
typeinfo/ti_double.bc \
|
|
typeinfo/ti_float.bc \
|
|
typeinfo/ti_idouble.bc \
|
|
typeinfo/ti_ifloat.bc \
|
|
typeinfo/ti_int.bc \
|
|
typeinfo/ti_ireal.bc \
|
|
typeinfo/ti_long.bc \
|
|
typeinfo/ti_ptr.bc \
|
|
typeinfo/ti_real.bc \
|
|
typeinfo/ti_short.bc \
|
|
typeinfo/ti_ubyte.bc \
|
|
typeinfo/ti_uint.bc \
|
|
typeinfo/ti_ulong.bc \
|
|
typeinfo/ti_ushort.bc \
|
|
typeinfo/ti_void.bc \
|
|
typeinfo/ti_wchar.bc
|
|
|
|
OBJ_BASE_O= \
|
|
aaA.o \
|
|
aApply.o \
|
|
aApplyR.o \
|
|
adi.o \
|
|
arrayInit.o \
|
|
cast.o \
|
|
dmain2.o \
|
|
eh.o \
|
|
genobj.o \
|
|
lifetime.o \
|
|
memory.o \
|
|
qsort2.o \
|
|
switch.o \
|
|
invariant.o
|
|
|
|
OBJ_UTIL_O= \
|
|
util/console.o \
|
|
util/ctype.o \
|
|
util/string.o \
|
|
util/utf.o
|
|
|
|
OBJ_LDC_O= \
|
|
ldc/bitmanip.o \
|
|
ldc/vararg.o
|
|
|
|
OBJ_TI_O= \
|
|
typeinfo/ti_AC.o \
|
|
typeinfo/ti_Acdouble.o \
|
|
typeinfo/ti_Acfloat.o \
|
|
typeinfo/ti_Acreal.o \
|
|
typeinfo/ti_Adouble.o \
|
|
typeinfo/ti_Afloat.o \
|
|
typeinfo/ti_Ag.o \
|
|
typeinfo/ti_Aint.o \
|
|
typeinfo/ti_Along.o \
|
|
typeinfo/ti_Areal.o \
|
|
typeinfo/ti_Ashort.o \
|
|
typeinfo/ti_byte.o \
|
|
typeinfo/ti_C.o \
|
|
typeinfo/ti_cdouble.o \
|
|
typeinfo/ti_cfloat.o \
|
|
typeinfo/ti_char.o \
|
|
typeinfo/ti_creal.o \
|
|
typeinfo/ti_dchar.o \
|
|
typeinfo/ti_delegate.o \
|
|
typeinfo/ti_double.o \
|
|
typeinfo/ti_float.o \
|
|
typeinfo/ti_idouble.o \
|
|
typeinfo/ti_ifloat.o \
|
|
typeinfo/ti_int.o \
|
|
typeinfo/ti_ireal.o \
|
|
typeinfo/ti_long.o \
|
|
typeinfo/ti_ptr.o \
|
|
typeinfo/ti_real.o \
|
|
typeinfo/ti_short.o \
|
|
typeinfo/ti_ubyte.o \
|
|
typeinfo/ti_uint.o \
|
|
typeinfo/ti_ulong.o \
|
|
typeinfo/ti_ushort.o \
|
|
typeinfo/ti_void.o \
|
|
typeinfo/ti_wchar.o
|
|
|
|
ALL_OBJS_BC= \
|
|
$(OBJ_BASE_BC) \
|
|
$(OBJ_UTIL_BC) \
|
|
$(OBJ_TI_BC) \
|
|
$(OBJ_LDC_BC)
|
|
|
|
ALL_OBJS_O= \
|
|
$(OBJ_BASE_O) \
|
|
$(OBJ_UTIL_O) \
|
|
$(OBJ_TI_O) \
|
|
$(OBJ_LDC_O) \
|
|
$(OBJ_C)
|
|
|
|
######################################################
|
|
|
|
ALL_DOCS=
|
|
|
|
######################################################
|
|
|
|
#ldc.bclib : $(LIB_TARGET_BC_ONLY)
|
|
ldc.clib : $(LIB_TARGET_C_ONLY)
|
|
ldc.lib : $(LIB_TARGET_FULL)
|
|
ldc.sharedlib : $(LIB_TARGET_SHARED)
|
|
|
|
#$(LIB_TARGET_BC_ONLY) : $(ALL_OBJS_O)
|
|
# $(RM) $@
|
|
# $(LC) $@ $(ALL_OBJS_BC)
|
|
|
|
|
|
$(LIB_TARGET_FULL) : $(ALL_OBJS_O)
|
|
$(RM) $@
|
|
$(CLC) $@ $(ALL_OBJS_O)
|
|
|
|
|
|
$(LIB_TARGET_C_ONLY) : $(OBJ_C)
|
|
$(RM) $@
|
|
$(CLC) $@ $(OBJ_C)
|
|
|
|
|
|
$(LIB_TARGET_SHARED) : $(ALL_OBJS_O)
|
|
$(RM) $@
|
|
$(CC) -shared -o $@ $(ALL_OBJS_O)
|
|
|
|
|
|
ldc.doc : $(ALL_DOCS)
|
|
echo No documentation available.
|
|
|
|
######################################################
|
|
|
|
clean :
|
|
find . -name "*.di" | xargs $(RM)
|
|
# $(RM) $(ALL_OBJS_BC)
|
|
$(RM) $(ALL_OBJS_O)
|
|
$(RM) $(ALL_DOCS)
|
|
$(RM) $(LIB_MASK)
|
|
|
|
install :
|
|
$(MD) $(LIB_DEST)
|
|
$(CP) $(LIB_MASK) $(LIB_DEST)/.
|