We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c71eecb commit 25e6bc4Copy full SHA for 25e6bc4
build/ui.ts
@@ -97,10 +97,9 @@ export async function buildUi(target?: string, debug = false) {
97
Object.assign(env, getSysrootEnv(target));
98
}
99
100
- // On musl (Alpine), GTK must be dynamically linked
+ // On musl (Alpine), GTK must be dynamically linked even with static musl libc
101
if (platform === "desktop" && await isMusl()) {
102
- const existingFlags = env.RUSTFLAGS || "";
103
- env.RUSTFLAGS = `${existingFlags} -C target-feature=-crt-static`.trim();
+ env.PKG_CONFIG_ALL_DYNAMIC = "1";
104
105
106
await exec(buildArgs, env);
0 commit comments