-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use backward-cpp for backtrace (#55)
* Use backward-cpp for backtrace
- Loading branch information
Showing
4 changed files
with
29 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ RUN . /etc/os-release && apt-key adv --keyserver keyserver.ubuntu.com --recv-key | |
|
||
RUN apt-get update && apt-get install -y build-essential libtool automake git tree rpm libboost1.70-dev` | ||
libpcap-dev libsndfile1-dev libapr1-dev libspeex-dev liblog4cxx-dev libace-dev ` | ||
libopus-dev libxerces-c3-dev libssl-dev cmake` | ||
libopus-dev libxerces-c3-dev libssl-dev cmake libdw-dev liblzma-dev libunwind-dev` | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
#silk | ||
|
@@ -43,6 +43,11 @@ RUN mkdir -p /opt/bcg729 && chmod 777 /opt/bcg729` | |
&& make ` | ||
&& make install | ||
|
||
#backward-cpp | ||
RUN mkdir -p /opt/backward-cpp && chmod 777 /opt/backward-cpp` | ||
&& git clone --depth 1 https://github.com/bombela/backward-cpp.git /opt/backward-cpp ` | ||
&& ln -s /opt/backward-cpp/backward.hpp /usr/local/include/backward.hpp | ||
|
||
RUN mkdir -p /opt/oreka && chmod 777 /opt/oreka` | ||
&& git clone --depth 1 https://github.com/voiceip/oreka.git /opt/oreka ` | ||
&& cd /opt/oreka/orkbasecxx ` | ||
|
@@ -62,7 +67,7 @@ MAINTAINER Kinshuk B ([email protected]) | |
|
||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get update && apt-get install -y libpcap0.8 libsndfile1 libapr1 libspeex1 liblog4cxx10v5 libace-6.3.3 ` | ||
libopus0 libxerces-c3.1 libssl1.0.0 && rm -rf /var/lib/apt/lists/* | ||
libopus0 libxerces-c3.1 libssl1.0.0 libdw1 libunwind8 && rm -rf /var/lib/apt/lists/* | ||
|
||
# Mount the image from "builder" stage at `/artifacts` during this run | ||
RUN --mount=type=bind,source=/,target=/artifacts,from=builder ` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters