File tree 3 files changed +11
-3
lines changed
3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ find_path (
172
172
find_library ( DEBUGINFOD_LIB NAMES debuginfod )
173
173
174
174
if (DEBUGINFOD_INCLUDE_DIR AND DEBUGINFOD_LIB)
175
- message ("found debuginfod header at ${DEBUGINFOD_INCLUDE_DIR} , lib at ${DEBUGINFOD_LIB} " )
175
+ message (STATUS "found debuginfod header at ${DEBUGINFOD_INCLUDE_DIR} , lib at ${DEBUGINFOD_LIB} " )
176
176
target_link_libraries (dwelf ${DEBUGINFOD_LIB} )
177
177
add_definitions (-DDEBUGINFOD)
178
178
else ()
Original file line number Diff line number Diff line change 1
1
FROM almalinux:9
2
- RUN dnf install --enablerepo "baseos-debuginfo" -y epel-release cmake zlib-devel xz-devel python3-devel python3-debuginfo gcc g++
2
+ RUN dnf install --enablerepo "baseos-debuginfo" -y epel-release
3
+ RUN dnf install --enablerepo "baseos-debuginfo" -y gcc
4
+ RUN dnf install --enablerepo "baseos-debuginfo" -y g++
5
+ RUN dnf install --enablerepo "baseos-debuginfo" -y cmake
6
+ RUN dnf install --enablerepo "baseos-debuginfo" -y zlib-devel
7
+ RUN dnf install --enablerepo "baseos-debuginfo" -y xz-devel
8
+ RUN dnf install --enablerepo "baseos-debuginfo" -y python3-devel
9
+ RUN dnf install --enablerepo "baseos-debuginfo" -y python3-debuginfo
10
+ RUN dnf install --enablerepo "baseos-debuginfo" -y elfutils-debuginfod-client-devel
3
11
WORKDIR /src/docker/alma9-with-py3
4
12
CMD ls -lsa /usr/bin/cmake && mkdir -p release && cd release && cmake -DPYTHON3=ON -DPYTHON3_SOURCE="/usr/include/python3.9" -DCMAKE_BUILD_TYPE=Release ../../.. && make -j && cd .. && mkdir -p debug && cd debug && cmake -DPYTHON3=ON -DPYTHON3_SOURCE="/usr/include/python3.9" -DCMAKE_BUILD_TYPE=Debug ../../.. && make -j && make test
Original file line number Diff line number Diff line change 1
- cmake_minimum_required (VERSION 3.7 )
1
+ cmake_minimum_required (VERSION 3.10 )
2
2
project (pstack-tests C CXX)
3
3
4
4
# Force debug build for tests. Many of the tests are looking at debug info that
You can’t perform that action at this time.
0 commit comments