-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
asset, rdpq, toolchain: initial picolibc support
- Loading branch information
1 parent
e3c245b
commit 32caa84
Showing
5 changed files
with
116 additions
and
17 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
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
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,19 @@ | ||
[binaries] | ||
# Meson 0.53.2 doesn't use any cflags when doing basic compiler tests, | ||
# so we have to add -nostdlib to the compiler configuration itself or | ||
# early compiler tests will fail. This can be removed when picolibc | ||
# requires at least version 0.54.2 of meson. | ||
c = ['mips64-elf-gcc', '-nostdlib'] | ||
ar = 'mips64-elf-ar' | ||
as = 'mips64-elf-as' | ||
nm = 'mips64-elf-nm' | ||
strip = 'mips64-elf-strip' | ||
|
||
[host_machine] | ||
system = 'none' | ||
cpu_family = 'mips64' | ||
cpu = 'mips64vr4300' | ||
endian = 'big' | ||
|
||
[properties] | ||
skip_sanity_check = true |