Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
relibc
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
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Peter Limkilde Svendsen
relibc
Commits
e1abe809
Commit
e1abe809
authored
6 years ago
by
Jeremy Soller
Browse files
Options
Downloads
Patches
Plain Diff
Fix CI
parent
6abd64ae
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
Makefile
+6
-2
6 additions, 2 deletions
Makefile
ci.sh
+3
-1
3 additions, 1 deletion
ci.sh
with
9 additions
and
3 deletions
Makefile
+
6
−
2
View file @
e1abe809
...
...
@@ -14,9 +14,9 @@ ifeq ($(TARGET),x86_64-unknown-redox)
CC
=
"x86_64-unknown-redox-gcc"
endif
.PHONY
:
all clean fmt test
.PHONY
:
all clean fmt
libc
test
all
:
$(BUILD)/debug/libc.a $(BUILD)/debug/libcrt0.a $(BUILD)/openlibm/libopenlibm.a
all
:
libc libm
clean
:
cargo clean
...
...
@@ -25,6 +25,10 @@ clean:
fmt
:
./fmt.sh
libc
:
$(BUILD)/debug/libc.a $(BUILD)/debug/libcrt0.a
libm
:
$(BUILD)/openlibm/libopenlibm.a
test
:
all
make
-C
tests run
...
...
This diff is collapsed.
Click to expand it.
ci.sh
+
3
−
1
View file @
e1abe809
...
...
@@ -2,8 +2,10 @@
set
-ex
./fmt.sh
--
--write-mode
=
diff
make
if
[
-z
"
$TARGET
"
]
then
make all
make
test
else
make libc
fi
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