Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #113 from vexide/update-target-os
Browse files Browse the repository at this point in the history
fix: use arch instead of os for allocator
  • Loading branch information
Gavin-Niederman authored Apr 5, 2024
2 parents 7a3744a + 6d7b7fa commit 12b9941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/pros-core/src/allocator/mod.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//! Simple allocator using the VEX libc allocation functions in vexos and jemalloc in the sim.

#[cfg(target_os = "vexos")]
#[cfg(target_arch = "arm")]
mod vexos;
#[cfg(target_arch = "wasm32")]
mod wasm;

0 comments on commit 12b9941

Please sign in to comment.