Update rust version (required many build changes)

This commit is contained in:
Simon Gellis 2025-08-24 21:02:48 -04:00
parent b988571674
commit f732720c31
10 changed files with 57 additions and 36 deletions

View File

@ -1,24 +1,39 @@
# This Dockerfile produces a base image for builds. # This Dockerfile produces a base image for builds.
# It includes all dependencies necessary to cross-compile for Windows/MacOS/Linux. # It includes all dependencies necessary to cross-compile for Windows/MacOS/Linux.
FROM crazymax/osxcross:latest-ubuntu AS osxcross FROM debian:bookworm AS osxcross
ADD --chmod=644 "https://apt.llvm.org/llvm-snapshot.gpg.key" /etc/apt/trusted.gpg.d/apt.llvm.org.asc
WORKDIR /build/osxcross
ADD "https://github.com/tpoechtrager/osxcross.git#47936a512273bb3b414b5a2e83043c92eabc7ae7" .
ADD "https://github.com/joseluisq/macosx-sdks/releases/download/14.5/MacOSX14.5.sdk.tar.xz" ./tarballs/MacOSX14.5.sdk.tar.xz
RUN apt-get update && \
apt-get install -y ca-certificates
COPY llvm.sources /etc/apt/sources.list.d/llvm.sources
RUN apt-get update && \
apt-get install -y bash bzip2 clang-20 git lld-20 llvm-20 make patch xz-utils && \
ln -s $(which clang-20) /usr/bin/clang && \
ln -s $(which clang++-20) /usr/bin/clang++ && \
ln -s $(which ld64.lld-20) /usr/bin/ld64.lld && \
SDK_VERSION=14.5 UNATTENDED=1 ENABLE_COMPILER_RT_INSTALL=1 TARGET_DIR=/osxcross ./build.sh
FROM rust:latest FROM rust:1.89-bookworm
ADD --chmod=644 "https://apt.llvm.org/llvm-snapshot.gpg.key" /etc/apt/trusted.gpg.d/apt.llvm.org.asc
COPY llvm.sources /etc/apt/sources.list.d/llvm.sources
RUN rustup target add x86_64-pc-windows-msvc && \ RUN rustup target add x86_64-pc-windows-msvc && \
rustup target add x86_64-apple-darwin && \ rustup target add x86_64-apple-darwin && \
rustup target add aarch64-apple-darwin && \ rustup target add aarch64-apple-darwin && \
apt-get update && \ apt-get update && \
apt-get install -y clang-19 lld-19 libc6-dev libasound2-dev libudev-dev genisoimage mingw-w64 && \ apt-get install -y clang-20 lld-20 libc6-dev libasound2-dev libudev-dev genisoimage mingw-w64 && \
cargo install cargo-bundle xwin && \ cargo install cargo-bundle xwin && \
xwin --accept-license splat --output xwin && \ xwin --accept-license splat --output xwin && \
rm -rf .xwin-cache && \ rm -rf .xwin-cache && \
ln -s $(which clang-19) /usr/bin/clang && \ ln -s $(which clang-20) /usr/bin/clang && \
ln -s $(which clang++-19) /usr/bin/clang++ ln -s $(which clang++-20) /usr/bin/clang++
COPY --from=osxcross /osxcross /osxcross COPY --from=osxcross /osxcross /osxcross
ENV PATH="/osxcross/bin:$PATH" \ ENV PATH="/osxcross/bin:$PATH" \
LD_LIBRARY_PATH="/osxcross/lib" \ LD_LIBRARY_PATH="/osxcross/lib" \
CC="clang-19" CXX="clang++-19" AR="llvm-ar-19" \ CC="clang-20" CXX="clang++-20" AR="llvm-ar-20" \
CC_x86_64-apple-darwin="o64-clang" \ CC_x86_64-apple-darwin="o64-clang" \
CXX_x86_64-apple-darwin="o64-clang++" \ CXX_x86_64-apple-darwin="o64-clang++" \
CC_aarch64-apple-darwin="oa64-clang" \ CC_aarch64-apple-darwin="oa64-clang" \
@ -27,10 +42,10 @@ ENV PATH="/osxcross/bin:$PATH" \
CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS="-Clinker-plugin-lto -Clinker=clang -Clink-arg=-fuse-ld=lld" \ CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS="-Clinker-plugin-lto -Clinker=clang -Clink-arg=-fuse-ld=lld" \
SHROOMS_CFLAGS_x86_64-pc-windows-msvc="-flto" \ SHROOMS_CFLAGS_x86_64-pc-windows-msvc="-flto" \
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_RUSTFLAGS="-Lnative=/xwin/crt/lib/x86_64 -Lnative=/xwin/sdk/lib/um/x86_64 -Lnative=/xwin/sdk/lib/ucrt/x86_64 -Clinker-plugin-lto -Clink-arg=-fuse-ld=lld" \ CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_RUSTFLAGS="-Lnative=/xwin/crt/lib/x86_64 -Lnative=/xwin/sdk/lib/um/x86_64 -Lnative=/xwin/sdk/lib/ucrt/x86_64 -Clinker-plugin-lto -Clink-arg=-fuse-ld=lld" \
CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER="lld-link-19" \ CARGO_TARGET_X86_64_PC_WINDOWS_MSVC_LINKER="lld-link-20" \
CARGO_TARGET_X86_64_APPLE_DARWIN_LINKER="o64-clang" \ CARGO_TARGET_X86_64_APPLE_DARWIN_LINKER="o64-clang" \
CARGO_TARGET_X86_64_APPLE_DARWIN_AR="llvm-ar-19" \ CARGO_TARGET_X86_64_APPLE_DARWIN_AR="llvm-ar-20" \
CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER="oa64-clang" \ CARGO_TARGET_AARCH64_APPLE_DARWIN_LINKER="oa64-clang" \
CARGO_TARGET_AARCH64_APPLE_DARWIN_AR="llvm-ar-19" \ CARGO_TARGET_AARCH64_APPLE_DARWIN_AR="llvm-ar-20" \
RC_PATH="llvm-rc-19" \ RC_PATH="llvm-rc-20" \
MACOSX_DEPLOYMENT_TARGET="14.5" MACOSX_DEPLOYMENT_TARGET="14.5"

4
llvm.sources Normal file
View File

@ -0,0 +1,4 @@
Types: deb deb-src
URIs: http://apt.llvm.org/bookworm/
Suites: llvm-toolchain-bookworm-20
Components: main

4
scripts/bundle.sh Executable file
View File

@ -0,0 +1,4 @@
set -e
docker build --pull -f build.Dockerfile -t lemur-build .
MSYS_NO_PATHCONV=1 docker run -it --rm -v .:/app -w /app --entrypoint sh lemur-build /app/scripts/do-bundle.sh

View File

@ -24,8 +24,7 @@ if ! command -v docker 2>&1 >/dev/null; then
exit 1 exit 1
fi fi
docker build -f build.Dockerfile -t lemur-build . ./scripts/bundle.sh
MSYS_NO_PATHCONV=1 docker run -it --rm -v .:/app -w /app --entrypoint bash lemur-build /app/scripts/do-bundle.sh
body=$(cat <<EOF body=$(cat <<EOF
## How to install ## How to install

View File

@ -209,11 +209,10 @@ impl ApplicationHandler<UserEvent> for Application {
.focused .focused
.as_ref() .as_ref()
.and_then(|id| self.viewports.get_mut(id)) .and_then(|id| self.viewports.get_mut(id))
&& viewport.app.handle_gamepad_event(&event)
{ {
if viewport.app.handle_gamepad_event(&event) {
return; return;
} }
}
self.controllers.handle_gamepad_event(&event); self.controllers.handle_gamepad_event(&event);
} }
UserEvent::OpenAbout => { UserEvent::OpenAbout => {
@ -289,12 +288,12 @@ impl ApplicationHandler<UserEvent> for Application {
fn exiting(&mut self, _event_loop: &ActiveEventLoop) { fn exiting(&mut self, _event_loop: &ActiveEventLoop) {
let (sender, receiver) = oneshot::channel(); let (sender, receiver) = oneshot::channel();
if self.client.send_command(EmulatorCommand::Exit(sender)) { if self.client.send_command(EmulatorCommand::Exit(sender))
if let Err(error) = receiver.recv_timeout(Duration::from_secs(5)) { && let Err(error) = receiver.recv_timeout(Duration::from_secs(5))
{
error!(%error, "could not gracefully exit."); error!(%error, "could not gracefully exit.");
} }
} }
}
} }
struct WgpuState { struct WgpuState {

View File

@ -455,12 +455,12 @@ impl Emulator {
let Some(sim) = self.sims.get_mut(sim_id.to_index()) else { let Some(sim) = self.sims.get_mut(sim_id.to_index()) else {
return true; return true;
}; };
if let Some(text) = sim.take_stdout() { if let Some(text) = sim.take_stdout()
if stdout.send(text).is_err() { && stdout.send(text).is_err()
{
sim.watch_stdout(false); sim.watch_stdout(false);
return false; return false;
} }
}
true true
}); });

View File

@ -169,7 +169,7 @@ impl MemoryRef<'_> {
T::from_bytes(&self.inner[from..to]) T::from_bytes(&self.inner[from..to])
} }
pub fn range<T: MemoryValue>(&self, start: usize, count: usize) -> MemoryIter<T> { pub fn range<T: MemoryValue>(&self, start: usize, count: usize) -> MemoryIter<'_, T> {
let from = start * size_of::<T>(); let from = start * size_of::<T>();
let to = from + (count * size_of::<T>()); let to = from + (count * size_of::<T>());
MemoryIter::new(&self.inner[from..to]) MemoryIter::new(&self.inner[from..to])

View File

@ -457,7 +457,7 @@ impl GameWindow {
self.config = new_config; self.config = new_config;
} }
fn button_for(&self, ctx: &Context, text: &str, command: Command) -> Button { fn button_for(&self, ctx: &Context, text: &str, command: Command) -> Button<'_> {
let button = Button::new(text); let button = Button::new(text);
match self.shortcuts.shortcut_for(command) { match self.shortcuts.shortcut_for(command) {
Some(shortcut) => button.shortcut_text(ctx.format_shortcut(&shortcut)), Some(shortcut) => button.shortcut_text(ctx.format_shortcut(&shortcut)),

View File

@ -62,8 +62,8 @@ impl HotkeysWindow {
} }
}); });
}); });
if let Some(command) = self.now_binding { if let Some(command) = self.now_binding
if let Some(shortcut) = ui.input_mut(|i| { && let Some(shortcut) = ui.input_mut(|i| {
i.events.iter().find_map(|event| match event { i.events.iter().find_map(|event| match event {
Event::Key { Event::Key {
key, key,
@ -73,12 +73,12 @@ impl HotkeysWindow {
} => Some(KeyboardShortcut::new(*modifiers, *key)), } => Some(KeyboardShortcut::new(*modifiers, *key)),
_ => None, _ => None,
}) })
}) { })
{
self.shortcuts.set(command, shortcut); self.shortcuts.set(command, shortcut);
self.now_binding = None; self.now_binding = None;
} }
} }
}
fn show_ff_settings(&mut self, ui: &mut Ui) { fn show_ff_settings(&mut self, ui: &mut Ui) {
let row_height = ui.spacing().interact_size.y; let row_height = ui.spacing().interact_size.y;

View File

@ -86,11 +86,11 @@ impl UiExt for Ui {
let (rect, _) = ui.allocate_at_least(Vec2::new(100.0, 100.0), Sense::hover()); let (rect, _) = ui.allocate_at_least(Vec2::new(100.0, 100.0), Sense::hover());
ui.painter().rect_filled(rect, 0.0, *color); ui.painter().rect_filled(rect, 0.0, *color);
let resp = ui.text_edit_singleline(hex); let resp = ui.text_edit_singleline(hex);
if resp.changed() { if resp.changed()
if let Ok(new_color) = HexColor::from_str_without_hash(hex) { && let Ok(new_color) = HexColor::from_str_without_hash(hex)
{
*color = new_color.color(); *color = new_color.color();
} }
}
resp resp
}, },
) )