Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build error #3267

Open
1 task
thiagoanglervision opened this issue Jan 23, 2025 · 1 comment
Open
1 task

Build error #3267

thiagoanglervision opened this issue Jan 23, 2025 · 1 comment
Labels
build-problem problems with building this sdk response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 10 days.

Comments

@thiagoanglervision
Copy link

Describe the bug

I am trying to build aws-sdk-cpp with the following steps:

sudo apt-get install libcurl4-openssl-dev libssl-dev uuid-dev zlib1g-dev libpulse-dev
git clone --recurse-submodules https://github.com/aws/aws-sdk-cpp
cd aws-sdk-cpp
mkdir build
cd build
cmake ../../aws-sdk-cpp -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/usr/local/ -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_ONLY="s3;cognito-idp;rds;secretsmanager"
make

and I am getting the following error:

aws-sdk-cpp/crt/aws-crt-cpp/crt/aws-c-io/source/s2n/s2n_tls_channel_handler.c:26:14: fatal error: s2n/unstable/cleanup.h: No such file or directory

   26 | #    include <s2n/unstable/cleanup.h>

Regression Issue

  • Select this option if this issue appears to be a regression.

Expected Behavior

Successful build

Current Behavior

aws-sdk-cpp/crt/aws-crt-cpp/crt/aws-c-io/source/s2n/s2n_tls_channel_handler.c:26:14: fatal error: s2n/unstable/cleanup.h: No such file or directory

   26 | #    include <s2n/unstable/cleanup.h>

Reproduction Steps

sudo apt-get install libcurl4-openssl-dev libssl-dev uuid-dev zlib1g-dev libpulse-dev
git clone --recurse-submodules https://github.com/aws/aws-sdk-cpp
cd aws-sdk-cpp
mkdir build
cd build
cmake ../../aws-sdk-cpp -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=/usr/local/ -DCMAKE_INSTALL_PREFIX=/usr/local/ -DBUILD_ONLY="s3;cognito-idp;rds;secretsmanager"
make

Possible Solution

No response

Additional Information/Context

No response

AWS CPP SDK version used

latest

Compiler and Version used

11.4.0

Operating System and version

Ubuntu 22.04

@thiagoanglervision thiagoanglervision added bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels Jan 23, 2025
@sbiscigl
Copy link
Contributor

when i run those commands in a clean docker container it works

FROM public.ecr.aws/ubuntu/ubuntu:24.04

# Install dependencies
RUN apt update
RUN apt install build-essential -y
RUN apt install git cmake libcurl4-openssl-dev libssl-dev uuid-dev zlib1g-dev libpulse-dev -y

# Build and install SDK
RUN git clone --recurse-submodules https://github.com/aws/aws-sdk-cpp && \
    cd aws-sdk-cpp && \
    mkdir build && \
    cd build && \
    cmake -DCMAKE_BUILD_TYPE=Release \
      -DCMAKE_PREFIX_PATH=/usr/local/ \
      -DCMAKE_INSTALL_PREFIX=/usr/local/ \
      -DBUILD_ONLY="s3;cognito-idp;rds;secretsmanager" .. &&\
    cmake --build . && \
    cmake --install .

so I would suggest looking for the difference between your environment and a clean environment. likely the same root cause as #3229

@sbiscigl sbiscigl added response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 10 days. build-problem problems with building this sdk and removed bug This issue is a bug. needs-triage This issue or PR still needs to be triaged. labels Jan 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
build-problem problems with building this sdk response-requested Waiting on additional info and feedback. Will move to "closing-soon" in 10 days.
Projects
None yet
Development

No branches or pull requests

2 participants