This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 146
fails to build with musl libc due to use of caddr_t #40
Comments
ncopa
added a commit
to ncopa/RPIO
that referenced
this issue
Oct 28, 2014
caddr_t is a legacy BSD type which was rejected by the POSIX standard. Use void * instead. This solves a build failure with musl libc. Fixes metachris#40
bkleef
added a commit
to bkleef/psutil
that referenced
this issue
Aug 4, 2015
2m
pushed a commit
to 2m/RPIO
that referenced
this issue
Oct 3, 2020
caddr_t is a legacy BSD type which was rejected by the POSIX standard. Use void * instead. This solves a build failure with musl libc. Fixes metachris#40
2m
pushed a commit
to 2m/RPIO
that referenced
this issue
Oct 3, 2020
caddr_t is a legacy BSD type which was rejected by the POSIX standard. Use void * instead. This solves a build failure with musl libc. Fixes metachris#40
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
This happens when trying to build with musl libc on Alpine Linux:
the caddr_t should be replaced with void *.
see http://stackoverflow.com/questions/6381526/what-is-the-significance-of-caddr-t-and-when-is-it-used
The text was updated successfully, but these errors were encountered: