Skip to content

WIP - Add x86_64-musl as a host architecture #57359

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

Closed
wants to merge 16 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
musl-toolchain: fix global lib paths (dont create /lib/libc.so)
  • Loading branch information
strfry authored and martell committed Jan 5, 2019
commit 73d682055db22cf6c4d1c3d0cdc2e7c6c79b726e
3 changes: 1 addition & 2 deletions src/ci/docker/scripts/musl-toolchain.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ cd ..

# Make musl binaries executable

ln -s $OUTPUT/$TARGET/lib/ld-musl-$ARCH.so.1 /lib
ln -s $OUTPUT/$TARGET/lib/libc.so /lib
ln -s $OUTPUT/$TARGET/lib/libc.so /lib/ld-musl-$ARCH.so.1
echo $OUTPUT/$TARGET/lib >> /etc/ld-musl-$ARCH.path


Expand Down