Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
felixmoebius
libc
Commits
bd4cf96c
Unverified
Commit
bd4cf96c
authored
4 years ago
by
Yuki Okushi
Committed by
GitHub
4 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #1769 from JohnTitor/aarch64-android
Re-enable aarch64-linux-android CI
parents
174920c7
1528539b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
ci/azure.yml
+2
-3
2 additions, 3 deletions
ci/azure.yml
libc-test/build.rs
+7
-0
7 additions, 0 deletions
libc-test/build.rs
with
9 additions
and
3 deletions
ci/azure.yml
+
2
−
3
View file @
bd4cf96c
...
...
@@ -34,9 +34,8 @@ jobs:
displayName
:
Execute run-docker.sh
strategy
:
matrix
:
# FIXME: Disabled due to https://github.com/rust-lang/libc/issues/1765
# aarch64-unknown-linux-android:
# TARGET: aarch64-linux-android
aarch64-unknown-linux-android
:
TARGET
:
aarch64-linux-android
aarch64-unknown-linux-gnu
:
TARGET
:
aarch64-unknown-linux-gnu
aarch64-unknown-linux-musl
:
...
...
This diff is collapsed.
Click to expand it.
libc-test/build.rs
+
7
−
0
View file @
bd4cf96c
...
...
@@ -1355,6 +1355,7 @@ fn test_android(target: &str) {
t
=>
panic!
(
"unsupported target: {}"
,
t
),
};
let
x86
=
target
.contains
(
"i686"
)
||
target
.contains
(
"x86_64"
);
let
aarch64
=
target
.contains
(
"aarch64"
);
let
mut
cfg
=
ctest_cfg
();
cfg
.define
(
"_GNU_SOURCE"
,
None
);
...
...
@@ -1564,6 +1565,12 @@ fn test_android(target: &str) {
// test the XSI version below.
"strerror_r"
=>
true
,
// FIXME: Somehow we cannot find these fns on aarch64.
// https://github.com/rust-lang/libc/issues/1765
"lockf"
|
"preadv64"
|
"pwritev64"
|
"openpty"
|
"forkpty"
|
"login_tty"
|
"getifaddrs"
|
"freeifaddrs"
|
"sethostname"
|
"getgrgid_r"
|
"getgrnam_r"
if
aarch64
=>
true
,
_
=>
false
,
}
});
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment