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
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tacle
tacle-tidy
Commits
a8c144a5
There was a problem fetching the pipeline summary.
Commit
a8c144a5
authored
9 years ago
by
Peter Wägemann
Browse files
Options
Downloads
Patches
Plain Diff
Remove dependencies to clang's extra tools
parent
48b6a125
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.sh
+2
-17
2 additions, 17 deletions
setup.sh
with
2 additions
and
17 deletions
setup.sh
+
2
−
17
View file @
a8c144a5
...
@@ -2,24 +2,18 @@
...
@@ -2,24 +2,18 @@
# repos
# repos
LLVM_GIT
=
"http://llvm.org/git/llvm.git"
LLVM_GIT
=
"http://llvm.org/git/llvm.git"
# branch of LLVM
and Clang
# branch of LLVM
BRANCH
=
"release_38"
BRANCH
=
"release_38"
# CLANG_GIT="http://llvm.org/git/clang.git"
# CLANG_GIT="http://llvm.org/git/clang.git"
CLANG_GIT
=
"git@gitlab.cs.fau.de:tacle/tacle-clang.git"
CLANG_GIT
=
"git@gitlab.cs.fau.de:tacle/tacle-clang.git"
# branch of clang
CLANG_BRANCH
=
"release_38_tacle"
CLANG_BRANCH
=
"release_38_tacle"
# use clang-tools-extra repository from TACLe
EXTRA_GIT
=
"git@gitlab.cs.fau.de:tacle/tacle-clang-tools-extra.git"
# EXTRA_GIT="http://llvm.org/git/clang-tools-extra.git"
EXTRA_BRANCH
=
"release_38_tacle"
# source paths
# source paths
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/extra"
# build path
# build path
export
LLVM_BUILD
=
"
${
BASE
}
/build"
export
LLVM_BUILD
=
"
${
BASE
}
/build"
...
@@ -40,15 +34,6 @@ if ! test -d ${CLANG_SRC}; then
...
@@ -40,15 +34,6 @@ if ! test -d ${CLANG_SRC}; then
cd
${
BASE
}
cd
${
BASE
}
fi
fi
# get clang's extras
if
!
test
-d
${
EXTRA_SRC
}
;
then
git clone
${
EXTRA_GIT
}
${
EXTRA_SRC
}
cd
${
EXTRA_SRC
}
git checkout
${
EXTRA_BRANCH
}
cd
${
BASE
}
fi
# Use maximum number of CPUs for build
# Use maximum number of CPUs for build
if
[
-e
/proc/cpuinfo
]
;
then
if
[
-e
/proc/cpuinfo
]
;
then
procs
=
`
grep
-c
processor /proc/cpuinfo
`
procs
=
`
grep
-c
processor /proc/cpuinfo
`
...
...
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