Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tacle-tidy
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tacle
tacle-tidy
Commits
8f99cd21
Commit
8f99cd21
authored
9 years ago
by
Peter Wägemann
Browse files
Options
Downloads
Patches
Plain Diff
Use separate remote branch release_38_tacle for extras
parent
2969a722
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.sh
+9
-4
9 additions, 4 deletions
setup.sh
with
9 additions
and
4 deletions
setup.sh
+
9
−
4
View file @
8f99cd21
...
@@ -3,12 +3,14 @@
...
@@ -3,12 +3,14 @@
# repos
# repos
LLVM_GIT
=
"http://llvm.org/git/llvm.git"
LLVM_GIT
=
"http://llvm.org/git/llvm.git"
CLANG_GIT
=
"http://llvm.org/git/clang.git"
CLANG_GIT
=
"http://llvm.org/git/clang.git"
# branch of LLVM and Clang
BRANCH
=
"release_38"
# use clang-tools-extra repository from TACLe
# use clang-tools-extra repository from TACLe
EXTRA_GIT
=
"git@gitlab.cs.fau.de:tacle/tacle-clang-tools-extra.git"
EXTRA_GIT
=
"git@gitlab.cs.fau.de:tacle/tacle-clang-tools-extra.git"
# EXTRA_GIT="http://llvm.org/git/clang-tools-extra.git"
# EXTRA_GIT="http://llvm.org/git/clang-tools-extra.git"
EXTRA_BRANCH
=
"release_38_tacle"
# branch/version
VERSION
=
"release_38"
# source paths
# source paths
export
BASE
=
`
pwd
`
export
BASE
=
`
pwd
`
...
@@ -23,7 +25,7 @@ export LLVM_BUILD="${BASE}/build"
...
@@ -23,7 +25,7 @@ export LLVM_BUILD="${BASE}/build"
if
!
test
-d
${
LLVM_SRC
}
;
then
if
!
test
-d
${
LLVM_SRC
}
;
then
git clone
${
LLVM_GIT
}
${
LLVM_SRC
}
git clone
${
LLVM_GIT
}
${
LLVM_SRC
}
cd
${
LLVM_SRC
}
cd
${
LLVM_SRC
}
git checkout
${
VERSION
}
git checkout
${
BRANCH
}
cd
${
BASE
}
cd
${
BASE
}
fi
fi
...
@@ -31,13 +33,16 @@ fi
...
@@ -31,13 +33,16 @@ fi
if
!
test
-d
${
CLANG_SRC
}
;
then
if
!
test
-d
${
CLANG_SRC
}
;
then
git clone
${
CLANG_GIT
}
${
CLANG_SRC
}
git clone
${
CLANG_GIT
}
${
CLANG_SRC
}
cd
${
CLANG_SRC
}
cd
${
CLANG_SRC
}
git checkout
${
VERSION
}
git checkout
${
BRANCH
}
cd
${
BASE
}
cd
${
BASE
}
fi
fi
# get clang's extras
# get clang's extras
if
!
test
-d
${
EXTRA_SRC
}
;
then
if
!
test
-d
${
EXTRA_SRC
}
;
then
git clone
${
EXTRA_GIT
}
${
EXTRA_SRC
}
git clone
${
EXTRA_GIT
}
${
EXTRA_SRC
}
cd
${
EXTRA_SRC
}
git checkout
${
EXTRA_BRANCH
}
cd
${
BASE
}
fi
fi
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment