You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Seeing the same issue as #124 but with Alpine 3.18.
FROM alpine:3.18
RUN apk add --no-cache cmake make g++ git bash zip curl-dev zlib-dev elfutils-dev
RUN git clone https://github.com/awslabs/aws-lambda-cpp.git && \
cd aws-lambda-cpp && \
mkdir build && \
cd build && \
cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/lambda-install && \
make && make install
Results in
Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
docker build .
Sending build context to Docker daemon 2.048kB
Step 1/3 : FROM alpine:3.18
---> 5e2b554c1c45
Step 2/3 : RUN apk add --no-cache cmake make g++ git bash zip curl-dev zlib-dev elfutils-dev
---> Using cache
---> ef8a2af84855
Step 3/3 : RUN git clone https://github.com/awslabs/aws-lambda-cpp.git && cd aws-lambda-cpp && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/lambda-install && make && make install
---> Running in 48db089782a6
Cloning into 'aws-lambda-cpp'...
-- The CXX compiler identification is GNU 12.2.1
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++ - skipped
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Found CURL: /usr/lib/libcurl.so (found version "8.1.2")
-- Looking for backtrace
-- Looking for backtrace - not found
CMake Error at /usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:230 (message):
Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
Call Stack (most recent call first):
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:600 (_FPHSA_FAILURE_MESSAGE)
/usr/share/cmake/Modules/FindBacktrace.cmake:90 (find_package_handle_standard_args)
CMakeLists.txt:50 (find_package)
-- Configuring incomplete, errors occurred!
The command '/bin/sh -c git clone https://github.com/awslabs/aws-lambda-cpp.git && cd aws-lambda-cpp && mkdir build && cd build && cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=~/lambda-install && make && make install' returned a non-zero code: 1
The text was updated successfully, but these errors were encountered:
Seeing the same issue as #124 but with Alpine 3.18.
Results in
Could NOT find Backtrace (missing: Backtrace_LIBRARY Backtrace_INCLUDE_DIR)
The text was updated successfully, but these errors were encountered: