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>
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
# `+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"]
|
||||
Reference in New Issue
Block a user