Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
72 commits
Select commit Hold shift + click to select a range
5b5f0a7
add armv7a-vex-v5 target
max-niederman May 28, 2024
266d1b6
add (shimmed) std support for armv7a-vex-v5
max-niederman May 28, 2024
83f35f3
add panic, stdio, and alloc support to armv7a-vex-v5
max-niederman May 28, 2024
56084eb
fix linker script and call main
max-niederman May 30, 2024
c204550
zero out bss section in _start
max-niederman Jul 17, 2024
c684a49
use static TLS implementation on vexos
max-niederman Jul 17, 2024
cdbfde6
make minor improvements to linker script
max-niederman Jul 17, 2024
5f8ee0c
enable stdio and fix stdout flushing
max-niederman Jul 18, 2024
a5403ca
add: `Instant` implementation
Gavin-Niederman Jul 18, 2024
d8c32e9
remove broken cleanup
max-niederman Jul 18, 2024
f5125f6
fix `.code_signature` section error
Tropix126 Jul 18, 2024
ac5f552
move `.code_signature` section into `.text`
Tropix126 Jul 18, 2024
bc07881
adjust `armv7a-vex-v5` target features for more aggressive hardware o…
Tropix126 Jul 18, 2024
170ba62
switch `llvm_target` to use ARM hard-float abi
Tropix126 Jul 18, 2024
80b1d36
add `env` implementation for `vexos` PAL
Tropix126 Jul 18, 2024
2855b31
feat: experimental fs support
Gavin-Niederman Jul 18, 2024
9aeeaa0
add support for more missing file operations
Tropix126 Jul 18, 2024
4f59642
feat: file writes vectored writes and vectored reads
Gavin-Niederman Jul 18, 2024
1900699
add helper for mapping FRESULT values
Tropix126 Jul 21, 2024
92d44bc
add: try_file_exists and stat
Gavin-Niederman Jul 21, 2024
62b6344
add: fileattr functions
Gavin-Niederman Jul 21, 2024
cf90d39
fix: check current position in file when getting size
Gavin-Niederman Jul 21, 2024
ff1aaf8
refactor: pseudorandom hashmap keys
Gavin-Niederman Jul 21, 2024
5e78476
fix: support File::file_attr and dissalow read and write mode at the …
Gavin-Niederman Jul 22, 2024
a5b9f71
feat: seek implementation
Gavin-Niederman Jul 22, 2024
1878f62
feat: almost working directory reading
Gavin-Niederman Jul 23, 2024
0aff419
fix: remove trailing slashes sooner
Gavin-Niederman Jul 23, 2024
0e0579a
remove test code and document filesystem quirks
Tropix126 Jul 27, 2024
ea7507e
add default code signature, ensure stdout flush
Tropix126 Aug 4, 2024
77e03a9
add platform docs
Tropix126 Aug 4, 2024
1581d08
adjust wording and fix typos in target documentation
Tropix126 Aug 4, 2024
8a69bd7
update PAL and add `check-cfg` override for `target_os`
Tropix126 Aug 5, 2024
1dbfada
add additional information to target spec and supporting docs
Tropix126 Aug 5, 2024
f39ea4a
fix `EXE_SUFFFIX` to use dot
Tropix126 Aug 9, 2024
77ddf8d
fix: use correct code signature default values
Tropix126 Aug 17, 2024
b6b3789
don't compile with `+thumb-mode` feature for now
Tropix126 Aug 21, 2024
b1671f1
properly flush serial on abort
Tropix126 Sep 6, 2024
3d0f59f
clarify documentation regarding cargo-v5, adjust `SystemTime` panic m…
Tropix126 Sep 7, 2024
ace69e6
use aapcs as system abi
max-niederman Oct 9, 2024
ea04c92
fix stack corruptions in startup routine
max-niederman Oct 9, 2024
f5237d6
fix thread locals
max-niederman Oct 9, 2024
e0e1eba
implement (shimmed) std::random
max-niederman Oct 9, 2024
e183779
fix allocation
max-niederman Oct 9, 2024
c492684
update linkerscript to include unwinding-related sections
Tropix126 Oct 11, 2024
84dcb23
format target doc and reorder maintainer list
max-niederman Oct 11, 2024
097d792
bump vex-sdk version and allow vex-sdk to be a stdlib dep
max-niederman Oct 11, 2024
6c2287c
add assembly test for armv7a-vex-v5
max-niederman Oct 11, 2024
b6d41fa
add armv7a-vex-v5 target docs to summary
max-niederman Oct 11, 2024
0d441ab
better document the is_like_vexos property of TargetOptions
max-niederman Oct 11, 2024
7bb6a04
detail summary of armv7a-vex-v5's target support
max-niederman Oct 11, 2024
a9ca387
add more descriptive comments to the `armv7a-vex-v5` linkerscript
Tropix126 Oct 13, 2024
24e381c
add `"v5"` target env armv7a-vex-v5 target spec
Tropix126 Oct 15, 2024
d11d208
implement `Stderr` in vexos PAL
Tropix126 Oct 23, 2024
1660bc6
run VEXos cpu1 scheduler while waiting for abort
Tropix126 Oct 23, 2024
508177c
update to `vex-sdk` 0.23.0
Tropix126 Oct 23, 2024
4d95d1f
add rudimentary implementation of `Thread::sleep` and `Thread::yield_…
Tropix126 Oct 25, 2024
034467f
fix broken reference to Instant in pal
max-niederman Oct 30, 2024
ed57739
switch to `+vfp3d16` LLVM feature in `armv7a-vex-v5`
Tropix126 Nov 11, 2024
a4701ce
fix and clean up comments surrounding file seeking
Tropix126 Dec 23, 2024
33f5078
add private unit to all pub fs types in vexos PAL
Tropix126 Dec 23, 2024
7168feb
treat all `io::Error`s as non-EBADF in vexos
Tropix126 Dec 23, 2024
8239a82
adjust error message for `FRESULT::FR_INT_ERR`
Tropix126 Dec 23, 2024
0b7aa15
bump `vex-sdk` to 0.26.0
Tropix126 Dec 23, 2024
fd8d110
update libstd lockfile
Tropix126 Dec 23, 2024
f76ae6f
fix circular dependency on cc-rs using a temporary patched version of…
max-niederman Jan 1, 2025
c0b0879
add unsupported file_lock functions
max-niederman Jan 1, 2025
08ace18
fix mistakes in fs PAL
max-niederman Jan 1, 2025
9f5c3f7
add `llvm_floatabi` to armv7a-vex-v5 spec
Tropix126 Jan 2, 2025
2081cf5
serialize `is_like_vexos` in target json specs
lewisfm Jan 2, 2025
d0d1fd9
ensure `arm` arch before adjusting VEXos system ABI to `aapcs`
lewisfm Jan 2, 2025
ee12faa
bless tests, add `armv7a-vex-v5` to assembly tests
Tropix126 Jan 25, 2025
d9a1349
backlink to relevant cleanup issues in FIXMEs
Tropix126 Jan 26, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix broken reference to Instant in pal
  • Loading branch information
max-niederman authored and Tropix126 committed Jan 25, 2025
commit 034467f01dc0851e73bc916de63d842109b63108
2 changes: 1 addition & 1 deletion library/std/src/sys/pal/vexos/thread.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use super::unsupported;
use crate::ffi::CStr;
use crate::io;
use crate::num::NonZero;
use crate::time::Duration;
use crate::time::{Duration, Instant};

pub struct Thread(!);

Expand Down