Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
Grpc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tci-gateway-module
Grpc
Commits
a339c169
Commit
a339c169
authored
10 years ago
by
Nicolas "Pixel" Noble
Browse files
Options
Downloads
Patches
Plain Diff
Adding a Dockerfile script that can build a docker image with an msan-compatible C++ compiler.
parent
bc91e25c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/dockerfile/msan_cxx/Dockerfile
+29
-0
29 additions, 0 deletions
tools/dockerfile/msan_cxx/Dockerfile
with
29 additions
and
0 deletions
tools/dockerfile/msan_cxx/Dockerfile
0 → 100644
+
29
−
0
View file @
a339c169
FROM
ubuntu:latest
RUN
apt-get update
&&
apt-get
install
-y
\
cmake
\
g++
\
gcc
\
git
\
make
\
python
\
&&
apt-get clean
RUN
git clone
-b
release_36 http://llvm.org/git/llvm.git
RUN
git clone
-b
release_36 http://llvm.org/git/clang.git
RUN
git clone
-b
release_36 http://llvm.org/git/compiler-rt.git
RUN
git clone
-b
release_36 http://llvm.org/git/clang-tools-extra.git
RUN
git clone
-b
release_36 http://llvm.org/git/libcxx.git
RUN
git clone
-b
release_36 http://llvm.org/git/libcxxabi.git
RUN
mv
clang llvm/tools
RUN
mv
compiler-rt llvm/projects
RUN
mv
clang-tools-extra llvm/tools/clang/tools
RUN
mv
libcxx llvm/projects
RUN
mv
libcxxabi llvm/projects
RUN
mkdir
llvm-build
RUN
cd
llvm-build
&&
cmake ../llvm
RUN
make
-C
llvm-build
&&
make
-C
llvm-build
install
&&
rm
-rf
llvm-build
CMD
["bash"]
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