Skip to content

Commit

Permalink
add lldb and libcxx
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippGrulich committed Jan 4, 2022
1 parent 73ee193 commit 57d0b2c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docker/Dockerfile-ubuntu-18.04
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -qq \
build-essential \
curl zip unzip tar \
pkg-config \
llvm-13 \
clang-13 \
&& apt-get clean -qq

ADD ./entrypoint-build.sh /entrypoint.sh
Expand Down
2 changes: 2 additions & 0 deletions docker/Dockerfile-ubuntu-20.04
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -qq \
build-essential \
curl zip unzip tar \
pkg-config \
llvm-13 \
clang-13 \
&& apt-get clean -qq

ADD ./entrypoint-build.sh /entrypoint.sh
Expand Down
2 changes: 2 additions & 0 deletions docker/Dockerfile-ubuntu-21.10
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ RUN apt-get update -qq && DEBIAN_FRONTEND="noninteractive" apt-get install -qq \
build-essential \
curl zip unzip tar \
pkg-config \
llvm-13 \
clang-13 \
&& apt-get clean -qq

ADD ./entrypoint-build.sh /entrypoint.sh
Expand Down
3 changes: 3 additions & 0 deletions docker/entrypoint-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
#quit if command returns non-zero code
set -e

export CC=clang
export CXX=clang++

if [ $# -eq 0 ]
then
cd /build_dir/
Expand Down

0 comments on commit 57d0b2c

Please sign in to comment.