-
Notifications
You must be signed in to change notification settings - Fork 14
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
Dockerfile doesn't support other platforms (e.g., arm64/m1) #75
Comments
Not sure if this will help. The Dockerfile tags ubuntu-22.04, which is for linux/amd64 (x86_64)( see https://hub.docker.com/r/jupyter/base-notebook/tags for the Docker base image page). If it was switched to latest then maybe you might have better luck, since this has arm64. In regards to your comment about using ld instead. It was needed when I installed xeus-clang-repl natively within MacOS on Apple Silicon. Assuming this project is interested in natively supporting arm64 I can create an issue on what changes were needed to install it natively, and eventually create pull requests (for both xeus-clang-repl and its dependencies). |
@mcbarton, that would be great - we are interested in this! |
As I now need to look at the Dockerfile as part of my PR #77 I plan to solve this issue as part of the PR |
In working around #74, I try to build the docker image (
docker build . -t xeus-clang-repl
) but fail to because of a linker error during buildingCppInterOp
:Not sure if it's because
gold
isn't smart enough or something else (i.e., I didn't try patching to useld
instead).cc @vgvassilev
The text was updated successfully, but these errors were encountered: