Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion m3-sys/windowsResources/src/winRes.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ readonly proc WindowsResource (file) is
if stale (res, src)
% Next line is all wrong, confusing mode and host and target. This
% entire function should probably be in config files.
if (equal (M3_BACKEND_MODE, "0") or equal (M3_BACKEND_MODE, "C")) and not equal (TARGET, "AMD64_MINGW")
if (equal (M3_BACKEND_MODE, "0") or equal (M3_BACKEND_MODE, "C") or equal (M3_BACKEND_MODE, "StAloneLlvmObj")) and not equal (TARGET, "AMD64_MINGW")
exec ("rc -DWIN32 -i", path_of(""), "-fo", res, src)
else
exec ("windres -DWIN32 -I", path_of(""), "-o", res, "-i", subst_chars(src, "\\", "/"))
Expand Down