7ecc718f5d
app -> app-desktop-macos, presets -> app-presets, server -> remote-server, daw-config-reaper -> osc-config-daw, plugin-reaper-realearn -> plugin-reaper-relearn. Updated run.py and presets.py path references accordingly. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
23 lines
946 B
TOML
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"] |