mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-15 22:28:18 +00:00
Make tool names end with .exe on windows. This isn't needed to run the
tools, but is required for rules that depend on the executables, e.g.: a: b $(LLVMAS) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13926 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -244,10 +244,10 @@ endif
|
|||||||
#--------------------------------------------------------------------------
|
#--------------------------------------------------------------------------
|
||||||
# Utilities used while building the LLVM tree, which live in the utils dir
|
# Utilities used while building the LLVM tree, which live in the utils dir
|
||||||
#
|
#
|
||||||
BURG := $(LLVMTOOLCURRENT)/burg
|
BURG := $(LLVMTOOLCURRENT)/burg$(EXEEXT)
|
||||||
RunBurg := $(BURG) $(BURG_OPTS)
|
RunBurg := $(BURG) $(BURG_OPTS)
|
||||||
TBLGEN := $(LLVMTOOLCURRENT)/tblgen
|
TBLGEN := $(LLVMTOOLCURRENT)/tblgen$(EXEEXT)
|
||||||
LGCCLDPROG := $(LLVMTOOLCURRENT)/gccld
|
LGCCLDPROG := $(LLVMTOOLCURRENT)/gccld$(EXEEXT)
|
||||||
|
|
||||||
#--------------------------------------------------------------------------
|
#--------------------------------------------------------------------------
|
||||||
# The LLVM GCC front-end in C and C++ flavors
|
# The LLVM GCC front-end in C and C++ flavors
|
||||||
@@ -259,7 +259,7 @@ LLVMGXX := PATH=$(LLVMTOOLCURRENT):$(PATH) $(LLVMGCCDIR)/bin/g++
|
|||||||
# Some of the compiled LLVM tools which are used for compilation of runtime
|
# Some of the compiled LLVM tools which are used for compilation of runtime
|
||||||
# libraries.
|
# libraries.
|
||||||
#
|
#
|
||||||
LLVMAS := $(LLVMTOOLCURRENT)/llvm-as
|
LLVMAS := $(LLVMTOOLCURRENT)/llvm-as$(EXEEXT)
|
||||||
|
|
||||||
|
|
||||||
###########################################################################
|
###########################################################################
|
||||||
|
@@ -38,16 +38,16 @@ endif
|
|||||||
LLVMGCCLIBDIR=$(dir $(shell $(LLVMGCC) -print-file-name=libgcc.a))
|
LLVMGCCLIBDIR=$(dir $(shell $(LLVMGCC) -print-file-name=libgcc.a))
|
||||||
|
|
||||||
# LLVM Tool Definitions (LLVMGCC, LLVMGXX, LLVMAS are provided by Makefile.rules)
|
# LLVM Tool Definitions (LLVMGCC, LLVMGXX, LLVMAS are provided by Makefile.rules)
|
||||||
LLI = $(LLVMTOOLCURRENT)/lli
|
LLI = $(LLVMTOOLCURRENT)/lli$(EXEEXT)
|
||||||
LLC = $(LLVMTOOLCURRENT)/llc
|
LLC = $(LLVMTOOLCURRENT)/llc$(EXEEXT)
|
||||||
LGCCAS = $(LLVMTOOLCURRENT)/gccas
|
LGCCAS = $(LLVMTOOLCURRENT)/gccas$(EXEEXT)
|
||||||
LGCCLD = $(LGCCLDPROG) -L$(LLVMGCCLIBDIR) -L$(LLVMGCCDIR)/lib
|
LGCCLD = $(LGCCLDPROG) -L$(LLVMGCCLIBDIR) -L$(LLVMGCCDIR)/lib
|
||||||
LDIS = $(LLVMTOOLCURRENT)/llvm-dis
|
LDIS = $(LLVMTOOLCURRENT)/llvm-dis$(EXEEXT)
|
||||||
LOPT = $(LLVMTOOLCURRENT)/opt
|
LOPT = $(LLVMTOOLCURRENT)/opt$(EXEEXT)
|
||||||
LLINK = $(LLVMTOOLCURRENT)/llvm-link
|
LLINK = $(LLVMTOOLCURRENT)/llvm-link$(EXEEXT)
|
||||||
LPROF = $(LLVMTOOLCURRENT)/llvm-prof
|
LPROF = $(LLVMTOOLCURRENT)/llvm-prof$(EXEEXT)
|
||||||
LANALYZE = $(LLVMTOOLCURRENT)/analyze
|
LANALYZE = $(LLVMTOOLCURRENT)/analyze$(EXEEXT)
|
||||||
LBUGPOINT= $(LLVMTOOLCURRENT)/bugpoint
|
LBUGPOINT= $(LLVMTOOLCURRENT)/bugpoint$(EXEEXT)
|
||||||
|
|
||||||
LCCFLAGS += -O2 -Wall
|
LCCFLAGS += -O2 -Wall
|
||||||
LCXXFLAGS += -O2 -Wall
|
LCXXFLAGS += -O2 -Wall
|
||||||
|
Reference in New Issue
Block a user