windows build fix
Some checks failed
demo.yaml / windows build fix (push) Failing after 0s

This commit is contained in:
Jorijn van der Graaf 2026-03-02 23:02:13 +01:00
commit 8c80cab079

View file

@ -476,7 +476,7 @@ namespace Crafter {
#if defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_pc_windows_msvc) || defined(CRAFTER_BUILD_CONFIGURATION_TARGET_x86_64_w64_mingw32)
system("echo %LIBCXX_DIR%\\lib\\c++.dll");
system(std::format("{}\\c++.dll", binDir.string()).c_str());
std::cout << std::format("{}\\c++.dll", binDir.string()).c_str() << std::endl;
system(std::format("copy %LIBCXX_DIR%\\lib\\c++.dll {}\\c++.dll", binDir.string()).c_str());
buildResult.errors = RunClang(std::format("{}{} -o {}.exe -fuse-ld=lld -L %LIBCXX_DIR%\\lib -lc++ -nostdinc++ -nostdlib++", command, files, (binDir/outputName).string()));
#endif