mirror of
https://github.com/RPCS3/llvm.git
synced 2025-02-09 03:56:28 +00:00
Always put version numbers at the end because they are optional.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46563 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ff9b373e8f
commit
c60141ba43
@ -56,12 +56,14 @@ ifndef RC_ProjectSourceSubversion
|
|||||||
RC_ProjectSourceSubversion = 01
|
RC_ProjectSourceSubversion = 01
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
# NOTE : Always put version numbers at the end because they are optional.
|
||||||
install: $(OBJROOT) $(SYMROOT) $(DSTROOT)
|
install: $(OBJROOT) $(SYMROOT) $(DSTROOT)
|
||||||
cd $(OBJROOT) && \
|
cd $(OBJROOT) && \
|
||||||
$(SRC)/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \
|
$(SRC)/build_llvm "$(RC_ARCHS)" "$(TARGETS)" \
|
||||||
$(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) \
|
$(SRC) $(PREFIX) $(DSTROOT) $(SYMROOT) \
|
||||||
$(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion) \
|
$(LLVM_ASSERTIONS) $(LLVM_OPTIMIZED) \
|
||||||
$(LLVM_ASSERTIONS) $(LLVM_OPTIMIZED)
|
$(RC_ProjectSourceVersion) $(RC_ProjectSourceSubversion)
|
||||||
|
|
||||||
|
|
||||||
# installhdrs does nothing, because the headers aren't useful until
|
# installhdrs does nothing, because the headers aren't useful until
|
||||||
# the compiler is installed.
|
# the compiler is installed.
|
||||||
|
@ -34,19 +34,19 @@ DEST_DIR="$5"
|
|||||||
# resulting compiler.
|
# resulting compiler.
|
||||||
SYM_DIR="$6"
|
SYM_DIR="$6"
|
||||||
|
|
||||||
# The seventh parameter is the version number of the submission, e.g. 1007.
|
# The seventh parameter is a yes/no that indicates whether assertions should be
|
||||||
LLVM_SUBMIT_VERSION="$7"
|
|
||||||
|
|
||||||
# The eighth parameter is the subversion number of the submission, e.g. 03.
|
|
||||||
LLVM_SUBMIT_SUBVERSION="$8"
|
|
||||||
|
|
||||||
# The nineth parameter is a yes/no that indicates whether assertions should be
|
|
||||||
# enabled in the LLVM libs/tools.
|
# enabled in the LLVM libs/tools.
|
||||||
LLVM_ASSERTIONS="$9"
|
LLVM_ASSERTIONS="$7"
|
||||||
|
|
||||||
# The tenth parameter is a yes/no that indicates whether this is an optimized
|
# The eighth parameter is a yes/no that indicates whether this is an optimized
|
||||||
# build.
|
# build.
|
||||||
LLVM_OPTIMIZED="${10}"
|
LLVM_OPTIMIZED="$8"
|
||||||
|
|
||||||
|
# The nineth parameter is the version number of the submission, e.g. 1007.
|
||||||
|
LLVM_SUBMIT_VERSION="$9"
|
||||||
|
|
||||||
|
# The tenth parameter is the subversion number of the submission, e.g. 03.
|
||||||
|
LLVM_SUBMIT_SUBVERSION="${10}"
|
||||||
|
|
||||||
# The current working directory is where the build will happen. It may already
|
# The current working directory is where the build will happen. It may already
|
||||||
# contain a partial result of an interrupted build, in which case this script
|
# contain a partial result of an interrupted build, in which case this script
|
||||||
|
Loading…
x
Reference in New Issue
Block a user