Revert r307823 (Use upstream suffixes for LLVM IR) for now. It causes a
number of ports to fail, which use bmake, and use .ll file extensions (usually for for C++-based lex input). Reported by: antoine
This commit is contained in:
parent
e301826d4c
commit
c4e24caf4e
@ -20,10 +20,10 @@
|
||||
${CC} ${STATIC_CFLAGS} ${CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
${CTFCONVERT_CMD}
|
||||
|
||||
.c.bc:
|
||||
.c.bco:
|
||||
${CC} -emit-llvm ${IR_CFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.c.ll:
|
||||
.c.llo:
|
||||
${CC} -emit-llvm ${IR_CFLAGS} -S ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.cc .cpp .cxx .C:
|
||||
@ -32,10 +32,10 @@
|
||||
.cc.o .cpp.o .cxx.o .C.o:
|
||||
${CXX} ${STATIC_CXXFLAGS} ${CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.cc.bc .cpp.bc .cxx.bc .C.bc:
|
||||
.cc.bco .cpp.bco .cxx.bco .C.bco:
|
||||
${CXX} -emit-llvm ${IR_CXXFLAGS} -c ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.cc.ll .cpp.ll .cxx.ll .C.ll:
|
||||
.cc.llo .cpp.llo .cxx.llo .C.llo:
|
||||
${CXX} -emit-llvm ${IR_CXXFLAGS} -S ${.IMPSRC} -o ${.TARGET}
|
||||
|
||||
.m.o:
|
||||
|
@ -121,7 +121,7 @@ META_MODE?= normal
|
||||
.if defined(%POSIX)
|
||||
.SUFFIXES: .o .c .y .l .a .sh .f
|
||||
.else
|
||||
.SUFFIXES: .out .a .ln .o .bc .ll .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .asm .s .cl .p .h .sh
|
||||
.SUFFIXES: .out .a .ln .o .bco .llo .c .cc .cpp .cxx .C .m .F .f .e .r .y .l .S .asm .s .cl .p .h .sh
|
||||
.endif
|
||||
|
||||
AR ?= ar
|
||||
|
Loading…
Reference in New Issue
Block a user