fix(windows): Mingw doesn't support trim

Closes: #872
This commit is contained in:
Josh Megnauth 2025-05-29 00:40:06 -04:00 committed by Michael Murphy
parent 6fb4a4a43e
commit 944c6761f7
4 changed files with 6 additions and 6 deletions

View file

@ -215,7 +215,7 @@ where
crate::Action::DbusActivation(message) => self.app.dbus_activation(message),
};
#[cfg(target_env = "gnu")]
#[cfg(all(target_env = "gnu", not(target_os = "windows")))]
crate::malloc::trim(0);
message
@ -397,7 +397,7 @@ where
self.app.view().map(crate::Action::App)
};
#[cfg(target_env = "gnu")]
#[cfg(all(target_env = "gnu", not(target_os = "windows")))]
crate::malloc::trim(0);
view
@ -407,7 +407,7 @@ where
pub fn view(&self) -> Element<crate::Action<T::Message>> {
let view = self.app.view_main();
#[cfg(target_env = "gnu")]
#[cfg(all(target_env = "gnu", not(target_os = "windows")))]
crate::malloc::trim(0);
view

View file

@ -96,7 +96,7 @@ pub(crate) fn iced_settings<App: Application>(
///
/// Returns error on application failure.
pub fn run<App: Application>(settings: Settings, flags: App::Flags) -> iced::Result {
#[cfg(target_env = "gnu")]
#[cfg(all(target_env = "gnu", not(target_os = "windows")))]
if let Some(threshold) = settings.default_mmap_threshold {
crate::malloc::limit_mmap_threshold(threshold);
}

View file

@ -460,7 +460,7 @@ pub fn run<App: Application>(flags: App::Flags) -> iced::Result {
let mut settings = helper.window_settings();
settings.resizable = None;
#[cfg(target_env = "gnu")]
#[cfg(all(target_env = "gnu", not(target_os = "windows")))]
if let Some(threshold) = settings.default_mmap_threshold {
crate::malloc::limit_mmap_threshold(threshold);
}

View file

@ -90,7 +90,7 @@ pub use iced_wgpu;
pub mod icon_theme;
pub mod keyboard_nav;
#[cfg(target_env = "gnu")]
#[cfg(all(target_env = "gnu", not(target_os = "windows")))]
pub(crate) mod malloc;
#[cfg(all(feature = "process", not(windows)))]