For naming folders with llvm use dot instead of underscore.
This commit is contained in:
2
alloy.py
2
alloy.py
@@ -193,10 +193,10 @@ def build_LLVM(version_LLVM, revision, folder, tarball, debug, selfbuild, extra,
|
|||||||
|
|
||||||
make_sure_dir_exists(llvm_home)
|
make_sure_dir_exists(llvm_home)
|
||||||
|
|
||||||
|
FOLDER_NAME=version_LLVM
|
||||||
version_LLVM = re.sub('\.', '_', version_LLVM)
|
version_LLVM = re.sub('\.', '_', version_LLVM)
|
||||||
|
|
||||||
os.chdir(llvm_home)
|
os.chdir(llvm_home)
|
||||||
FOLDER_NAME=version_LLVM
|
|
||||||
if revision != "":
|
if revision != "":
|
||||||
FOLDER_NAME = FOLDER_NAME + "_" + revision
|
FOLDER_NAME = FOLDER_NAME + "_" + revision
|
||||||
revision = "-" + revision
|
revision = "-" + revision
|
||||||
|
|||||||
Reference in New Issue
Block a user