Skip to content

Commit

Permalink
fix: 🚧 reenable hot-cold
Browse files Browse the repository at this point in the history
  • Loading branch information
ion098 committed Sep 27, 2024
1 parent 76f1af3 commit 4a70a4a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM rust:1.67 as builder

RUN git clone https://github.com/vexide/vex-v5-qemu.git /vex-v5-qemu
RUN git clone https://github.com/ion098/vex-v5-qemu.git -b feat/hot-cold --single-branch /vex-v5-qemu

WORKDIR /vex-v5-qemu
RUN cd packages/kernel; cargo build --target-dir /target/kernel
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ EXTRA_CFLAGS=
EXTRA_CXXFLAGS=

# Set to 1 to enable hot/cold linking
USE_PACKAGE:=0 # this doesnt work with hot/cold linking for some reason
USE_PACKAGE:=1 # this doesnt work with hot/cold linking for some reason

# Add libraries you do not wish to include in the cold image here
# EXCLUDE_COLD_LIBRARIES:= $(FWDIR)/your_library.a
EXCLUDE_COLD_LIBRARIES:=

# Set this to 1 to add additional rules to compile your project as a PROS library template
IS_LIBRARY:=0
IS_LIBRARY:=1
# TODO: CHANGE THIS!
LIBNAME:=gamepad
VERSION:=0.0.1
Expand Down

0 comments on commit 4a70a4a

Please sign in to comment.