-
Notifications
You must be signed in to change notification settings - Fork 1.1k
uclibc: fix semver files, add misc symbols #2403
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
Merged
Merged
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
7c89dd2
uclibc: update semver lists, moving symbols absert from uclibc into g…
skrap 4490988
uclibc: skip some items not included in uclibc
skrap 0d87e07
uclibc: add symbols defined in 1.0.34
skrap 00ed98d
linux: hoist a few symbols which are now available in all libc variants
skrap 3fa2461
ci: add Dockerfiles for uclibc on armv7 and mipsel
skrap 6a12326
remove mistakenly added symbol
skrap 7a64fe9
uclibc/mips: remove duplicated constants and add SYS_clone3
skrap 95656b9
l4re: fix build by adding required constants
skrap File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
gcc libc6-dev qemu-user ca-certificates qemu-system-arm curl \ | ||
xz-utils patch | ||
|
||
RUN mkdir /toolchain | ||
|
||
RUN curl --retry 5 -L https://toolchains.bootlin.com/downloads/releases/toolchains/armv7-eabihf/tarballs/armv7-eabihf--uclibc--bleeding-edge-2020.08-1.tar.bz2 | \ | ||
tar xjf - -C /toolchain --strip-components=1 | ||
RUN /toolchain/relocate-sdk.sh | ||
|
||
ENV PATH=$PATH:/rust/bin:/toolchain/bin \ | ||
STAGING_DIR=/toolchain/armv7-buildroot-linux-uclibceabihf/sysroot \ | ||
CC_armv7_unknown_linux_uclibc=armv7-buildroot-linux-uclibc-gcc \ | ||
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_UCLIBCEABIHF_LINKER=armv7-buildroot-linux-uclibc-gcc \ | ||
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_UCLIBCEABIHF_RUNNER="qemu-arm -L /toolchain/arm-buildroot-linux-uclibcgnueabihf/sysroot/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
FROM ubuntu:20.04 | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
gcc libc6-dev qemu-user ca-certificates qemu-system-mipsel curl \ | ||
xz-utils patch | ||
|
||
RUN mkdir /toolchain | ||
|
||
# binutils 2.33.1 | ||
# gcc 9.3.0 | ||
# gdb 8.3.1 | ||
# linux-headers 4.9.234 | ||
# uclibc 1.0.34 | ||
RUN curl --retry 5 -L https://toolchains.bootlin.com/downloads/releases/toolchains/mips32el/tarballs/mips32el--uclibc--stable-2020.08-1.tar.bz2 | \ | ||
tar xjf - -C /toolchain --strip-components=1 | ||
RUN /toolchain/relocate-sdk.sh | ||
|
||
ENV PATH=$PATH:/rust/bin:/toolchain/bin \ | ||
STAGING_DIR=/toolchain/mipsel-buildroot-linux-uclibc/sysroot \ | ||
CC_mipsel_unknown_linux_uclibc=mipsel-buildroot-linux-uclibc-gcc \ | ||
CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_UCLIBC_LINKER=mipsel-buildroot-linux-uclibc-gcc \ | ||
CARGO_TARGET_MIPSEL_UNKNOWN_LINUX_UCLIBC_RUNNER="qemu-mipsel -L /toolchain/mipsel-buildroot-linux-uclibc/sysroot/" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,42 @@ | ||
# TODO: musl. | ||
AF_IB | ||
AF_MPLS | ||
AF_XDP | ||
AIO_ALLDONE | ||
AIO_CANCELED | ||
AIO_NOTCANCELED | ||
Elf32_Chdr | ||
Elf64_Chdr | ||
LIO_NOP | ||
LIO_NOWAIT | ||
LIO_READ | ||
LIO_WAIT | ||
LIO_WRITE | ||
PF_IB | ||
PF_MPLS | ||
PF_XDP | ||
adjtimex | ||
aio_cancel | ||
aio_error | ||
aio_fsync | ||
aio_read | ||
aio_return | ||
aio_suspend | ||
aio_write | ||
aiocb | ||
clock_adjtime | ||
explicit_bzero | ||
futimes | ||
getauxval | ||
getloadavg | ||
lio_listio | ||
ntptimeval | ||
open_wmemstream | ||
preadv64 | ||
prlimit | ||
prlimit64 | ||
process_vm_readv | ||
process_vm_writev | ||
pwritev64 | ||
reallocarray | ||
timex | ||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.