-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #42 from jprjr/add-aarch64
add aarch64
- Loading branch information
Showing
10 changed files
with
105 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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 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 @@ | ||
|
This file contains 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 @@ | ||
|
This file contains 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 @@ | ||
|
This file contains 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,43 @@ | ||
target: aarch64-linux-musl | ||
clockrt: yes | ||
clockmon: yes | ||
posixspawn: yes | ||
timer: yes | ||
endianness: little | ||
sizeofushort: 2 | ||
sizeofuint: 4 | ||
sizeofulong: 8 | ||
sizeofgid: 4 | ||
sizeoftime: 8 | ||
accept4: yes | ||
ancilautoclose: no | ||
cmsgcloexec: yes | ||
devurandom: yes | ||
eproto: yes | ||
eventfd: yes | ||
flock: yes | ||
getpeereid: no | ||
sopeercred: yes | ||
getpeerucred: no | ||
ipv6: yes | ||
malloc0: yes | ||
msgdontwait: yes | ||
nbwaitall: yes | ||
openat: yes | ||
linkat: yes | ||
pipe2: yes | ||
ppoll: yes | ||
revoke: no | ||
sendfile: yes | ||
setgroups: yes | ||
settimeofday: yes | ||
signalfd: no | ||
splice: yes | ||
strcasestr: yes | ||
strnlen: yes | ||
uint64t: yes | ||
futimens: yes | ||
futimes: yes | ||
arc4random: no | ||
getrandom: no | ||
itimer: yes |
This file contains 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,54 @@ | ||
/* ISC license. */ | ||
|
||
#ifndef SYSDEPS_H | ||
#define SYSDEPS_H | ||
|
||
#define SKALIBS_TARGET "aarch64-linux-musl" | ||
#define SKALIBS_HASCLOCKRT | ||
#define SKALIBS_HASCLOCKMON | ||
#define SKALIBS_HASPOSIXSPAWN | ||
#define SKALIBS_HASTIMER | ||
#define SKALIBS_ENDIANNESS "little" | ||
#define SKALIBS_SIZEOFUSHORT 2 | ||
#define SKALIBS_USHORT_BITS 16 | ||
#define SKALIBS_SIZEOFUINT 4 | ||
#define SKALIBS_UINT_BITS 32 | ||
#define SKALIBS_SIZEOFULONG 8 | ||
#define SKALIBS_ULONG_BITS 64 | ||
#define SKALIBS_SIZEOFGID 4 | ||
#define SKALIBS_GID_BITS 32 | ||
#define SKALIBS_SIZEOFTIME 8 | ||
#define SKALIBS_TIME_BITS 64 | ||
#define SKALIBS_HASACCEPT4 | ||
#undef SKALIBS_HASANCILAUTOCLOSE | ||
#define SKALIBS_HASCMSGCLOEXEC | ||
#define SKALIBS_HASDEVURANDOM | ||
#define SKALIBS_HASEPROTO | ||
#define SKALIBS_HASEVENTFD | ||
#define SKALIBS_HASFLOCK | ||
#undef SKALIBS_HASGETPEEREID | ||
#define SKALIBS_HASSOPEERCRED | ||
#undef SKALIBS_HASGETPEERUCRED | ||
#define SKALIBS_HASIPV6 | ||
#define SKALIBS_HASMALLOC0 | ||
#define SKALIBS_HASMSGDONTWAIT | ||
#define SKALIBS_HASNBWAITALL | ||
#define SKALIBS_HASOPENAT | ||
#define SKALIBS_HASLINKAT | ||
#define SKALIBS_HASPIPE2 | ||
#define SKALIBS_HASPPOLL | ||
#undef SKALIBS_HASREVOKE | ||
#define SKALIBS_HASSENDFILE | ||
#define SKALIBS_HASSETGROUPS | ||
#define SKALIBS_HASSETTIMEOFDAY | ||
#undef SKALIBS_HASSIGNALFD | ||
#define SKALIBS_HASSPLICE | ||
#define SKALIBS_HASSTRCASESTR | ||
#define SKALIBS_HASSTRNLEN | ||
#define SKALIBS_HASUINT64T | ||
#define SKALIBS_HASFUTIMENS | ||
#define SKALIBS_HASFUTIMES | ||
#undef SKALIBS_HASARC4RANDOM | ||
#undef SKALIBS_HASGETRANDOM | ||
#define SKALIBS_HASITIMER | ||
#endif |
This file contains 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 @@ | ||
|
This file contains 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 @@ | ||
aarch64-linux-musl |
This file contains 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 @@ | ||
|
This file contains 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 @@ | ||
|