Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
PierreCashon
rustcomp
Commits
45f1a957
Commit
45f1a957
authored
2 years ago
by
Yifan Wu
Browse files
Options
Download
Patches
Plain Diff
Remove unnecessary output.
parent
c1c9b659
main
dev-update-_dir(已完成,不要使用这个分支)
fix-fix_libc-bench_regex_test
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
easy-fs-fuse/src/main.rs
+3
-3
easy-fs-fuse/src/main.rs
user/Makefile
+1
-1
user/Makefile
with
4 additions
and
4 deletions
+4
-4
easy-fs-fuse/src/main.rs
+
3
−
3
View file @
45f1a957
...
...
@@ -81,9 +81,9 @@ fn easy_fs_pack() -> std::io::Result<()> {
inode
.write_at
(
0
,
all_data
.as_slice
());
}
// list apps
for
app
in
root_inode
.ls
()
{
println!
(
"{}"
,
app
);
}
//
for app in root_inode.ls() {
//
println!("{}", app);
//
}
Ok
(())
}
...
...
This diff is collapsed.
Click to expand it.
user/Makefile
+
1
−
1
View file @
45f1a957
...
...
@@ -19,7 +19,7 @@ ifeq ($(TEST), 1)
endif
binary
:
elf
$(
foreach elf,
$(
ELFS
)
,
$(
OBJCOPY
)
$(
elf
)
--strip-all
-O
binary
$(
patsubst
$(
TARGET_DIR
)
/%,
$(
TARGET_DIR
)
/%.bin,
$(
elf
));)
@
$(
foreach elf,
$(
ELFS
)
,
$(
OBJCOPY
)
$(
elf
)
--strip-all
-O
binary
$(
patsubst
$(
TARGET_DIR
)
/%,
$(
TARGET_DIR
)
/%.bin,
$(
elf
));)
build
:
binary
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
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
Menu
Explore
Projects
Groups
Topics
Snippets