Files
virtual-controller/plugin-reaper-realearn/.cargo/config.toml
T
Paul Lipscomb e58f06d9fa Vendor helgoboss/helgobox (ReaLearn) as basis for custom UI fork
Stripped upstream git history; starting point for replacing the native
SWELL/Win32 mapping UI with something more suited to bulk editing.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-15 17:38:29 -04:00

23 lines
946 B
TOML

# `+crt-static` enables static linking to C runtime.
#
# In MSVC this would be: "C/C++ => Code Generation => Multithreaded (/MT) instead of Multithreaded-DLL (/MD)"".
# That links the Visual C++ Redistributable stuff statically. So no missing "msvcr*.dll".
[target.i686-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
[target.x86_64-pc-windows-msvc]
rustflags = ["-Ctarget-feature=+crt-static"]
# This was an attempt to be compatible with older Linux versions (older libc).
# Doesn't work for now because of: https://github.com/rust-lang/rust/issues/78210
# Also see https://github.com/helgoboss/helgobox/issues/829 for latest ideas.
# TODO-medium Try again later. Not urgent.
#[target.aarch64-unknown-linux-gnu]
#rustflags = ["-Ctarget-feature=+crt-static"]
#
#[target.armv7-unknown-linux-gnueabihf]
#rustflags = ["-Ctarget-feature=+crt-static"]
#
#[target.x86_64-unknown-linux-gnu]
#rustflags = ["-Ctarget-feature=+crt-static"]