2 커밋

작성자 SHA1 메시지 날짜
  Ray 7f8dfc6c69
Merge pull request #5018 from maiconpintoabreu/fix-zig-wasm-win-mac 3 주 전
  Maicon f1600a0c7e Fix issue on zig build emscripten run if the user has not installed emsdk 3 주 전
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
분할 보기
  1. +1
    -1
      build.zig

+ 1
- 1
build.zig 파일 보기

@ -60,7 +60,7 @@ fn emscriptenRunStep(b: *std.Build, emsdk: *std.Build.Dependency, examplePath: [
defer b.allocator.free(emrun_run_arg);
if (b.sysroot == null) {
emrun_run_arg = try std.fmt.bufPrint(emrun_run_arg, "{s}", .{emrunExe});
emrun_run_arg = try std.fmt.bufPrint(emrun_run_arg, "{s}" ++ std.fs.path.sep_str ++ "{s}", .{ emsdk.path("upstream/emscripten").getPath(b), emrunExe });
} else {
emrun_run_arg = try std.fmt.bufPrint(emrun_run_arg, "{s}" ++ std.fs.path.sep_str ++ "{s}", .{ dot_emsc_path, emrunExe });
}

불러오는 중...
취소
저장