-
Notifications
You must be signed in to change notification settings - Fork 145
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
Fix for successful build of container image. #692
base: master
Are you sure you want to change the base?
Conversation
Hello! Thank you for pointing out the issue with the ARM images being named differently and working on a fix. I need to think about this a bit because the initial reason we used the cxx-common base image was to keep the build environment as close as possible to how the dependencies were built, with the same compiler (exact version of LLVM), runtime libraries outside of vcpkg (like glibc), etc. I'd like to revisit whether we can build multi-platform Docker images in cxx-common before I consider these changes. |
I have successfully built remill in a multi-arch image without customizing it at all: https://github.com/mrexodia/cxx-common-cmake/ You build it with this command (from an M1 mac in my case):
That being said, I do not use the |
@ekilmer @mrexodia |
Remill is also included in the cxx-common-cmake repository (sorry for the name confusion) |
@yomaytk I just opened #695 to test the new way (lifting-bits/cxx-common#1045) we build Docker images in cxx-common. Can you try my PR and let me know if it works for you or not? As for your other fixes, I think we can include them, but it would be great if you could update this PR (or make a new one) to better separate concerns and possibly merge faster. Thank you! Also, @mrexodia, I agree that vcpkg isn't perfect, and we try to work around or document the issues and confusing aspects. I am curious about what specific aspects of vcpkg cause you the most headaches for the workflows or issues you have when developing these tools (or others). Maybe we can document those better or potentially smooth out the experience? For our situation, we use vcpkg primarily for binary caching during our CI runs. Local developers almost always build the vcpkg dependencies from source so that they have the Debug versions as well. We've also had decent success using the ASAN triplets to catch more issues. Also, your cxx-common-cmake repo is a great reference for managing a superbuild with CMake. Thank you! CMake superbuilds are the best solution for having absolute control over the dependencies and are certainly better if/when you need to fix/add/debug something in your dependencies. |
I got an error for this. after removing this error, build succeeded. thank you.
|
This pull request enables us to successfully build container images from the Dockerfile on both x86_64 and aarch64.
This fixed 3 files as follows.
trailofbits/cxx-common-vcpkg-builder-ubuntu:${UBUNTU_VERSION}
, but the name of deps image for aarch64 ends with${UBUNTU_VERSION}_arm64
. Thus, we had to specify the argument when building on aarch64 (e.g.--build-arg UBUNTU_VERSION=22.04_arm64
). To avoid this, I fixed to install all dependencies on the Dockerfile. Second, I commented out the lineCTEST_OUTPUT_ON_FAILURE=1 cmake --build . --verbose --target test -- -j $(nproc) && \
because the test has failed.#include <llvm/IR/AttributeMask.h>
caused and error and this is not used and therefore I removed this.