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
bf0fb3cb
Commit
bf0fb3cb
authored
9 years ago
by
Peter Wägemann
Browse files
Options
Downloads
Patches
Plain Diff
Update URLs of repositories, add gitignore
parent
8f0d922a
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+6
-0
6 additions, 0 deletions
.gitignore
setup.sh
+8
-4
8 additions, 4 deletions
setup.sh
with
14 additions
and
4 deletions
.gitignore
0 → 100644
+
6
−
0
View file @
bf0fb3cb
# LLVM/Clang is tracked independently
llvm/
# build tree, if building in-source
build/
This diff is collapsed.
Click to expand it.
setup.sh
+
8
−
4
View file @
bf0fb3cb
...
@@ -3,8 +3,9 @@
...
@@ -3,8 +3,9 @@
# 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"
EXTRA_GIT
=
"http://llvm.org/git/clang-tools-extra.git"
# use clang-tools-extra repository from TACLe
EXTRA_TACLE_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"
# branch/version
# branch/version
VERSION
=
"release_37"
VERSION
=
"release_37"
...
@@ -13,7 +14,7 @@ VERSION="release_37"
...
@@ -13,7 +14,7 @@ VERSION="release_37"
export
BASE
=
`
pwd
`
export
BASE
=
`
pwd
`
export
LLVM_SRC
=
"
${
BASE
}
/llvm"
export
LLVM_SRC
=
"
${
BASE
}
/llvm"
export
CLANG_SRC
=
"
${
LLVM_SRC
}
/tools/clang"
export
CLANG_SRC
=
"
${
LLVM_SRC
}
/tools/clang"
export
EXTRA_SRC
=
"
${
LLVM_SRC
}
/tools/clang/tools"
export
EXTRA_SRC
=
"
${
LLVM_SRC
}
/tools/clang/tools
/extra
"
# build path
# build path
export
LLVM_BUILD
=
"
${
BASE
}
/build"
export
LLVM_BUILD
=
"
${
BASE
}
/build"
...
@@ -29,7 +30,7 @@ fi
...
@@ -29,7 +30,7 @@ fi
# get clang
# get clang
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
${
LLVM
_SRC
}
cd
${
CLANG
_SRC
}
git checkout
${
VERSION
}
git checkout
${
VERSION
}
cd
${
BASE
}
cd
${
BASE
}
fi
fi
...
@@ -37,6 +38,9 @@ fi
...
@@ -37,6 +38,9 @@ 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
${
VERSION
}
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