Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
e754ee26
Commit
e754ee26
authored
Nov 23, 2020
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use libc++ on platforms that use non-default Clang
parent
984dc60e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
11 deletions
+17
-11
.ci/debian-9/Dockerfile
.ci/debian-9/Dockerfile
+4
-1
.ci/ubuntu-16.04/Dockerfile
.ci/ubuntu-16.04/Dockerfile
+13
-10
No files found.
.ci/debian-9/Dockerfile
View file @
e754ee26
FROM
debian:
stretch
FROM
debian:
9
RUN
apt update
-y
&&
\
apt upgrade
-y
RUN
apt
install
-y
\
clang-7
\
libc++-7-dev
\
libc++abi-7-dev
\
cmake
\
git
\
libssl-dev
\
...
...
@@ -12,3 +14,4 @@ RUN apt install -y \
&&
apt autoclean
ENV
CXX=/usr/bin/clang++-7
ENV
CXXFLAGS=-stdlib=libc++
.ci/ubuntu-16.04/Dockerfile
View file @
e754ee26
FROM
ubuntu:16.04
RUN
apt update
-y
&&
\
apt upgrade
-y
RUN
apt
install
-y
\
clang-8
\
cmake
\
git
\
libssl-dev
\
make
\
&&
apt autoclean
RUN
\
apt update
-y
\
&&
apt upgrade
-y
\
&&
apt
install
-y
\
clang-8
\
libc++-8-dev
\
libc++abi-8-dev
\
cmake
\
git
\
libssl-dev
\
make
\
&&
apt autoclean
ENV
CXX=/usr/bin/clang++-8
ENV
CXXFLAGS=-stdlib=libc++
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment