We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
deps.zig fails to compile with a message like so:
deps.zig
$ zig build run-simple C:\Users\Alexis Brodeur\Projects\github.com\brodeuralexis\webgpu\deps.zig:67:129: error: invalid escape character: 's' .pkg = Pkg{ .name = "webgpu-backend-dummy", .source = .{ .path = dirs._5lfigtl33bkz ++ "/./modules/webgpu-backend-dummy\src/backend.zig" }, .dependencies = null },
Both of these snippets of code make it so deps.zig generated on Windows does not compile if local dependencies are used:
zigmod/src/common.zig
Line 287 in 6a2d664
This uses the primary separator, which is \ on Windows.
\
zigmod/src/cmd/fetch.zig
Lines 287 to 293 in 6a2d664
This does not escape special characters.
The text was updated successfully, but these errors were encountered:
Found a workaround.
From:
dependencies: - src: local package-name package-path
To:
dependencies: - src: local package-name package-path/
Note the / at the end of the package path.
/
Sorry, something went wrong.
No branches or pull requests
deps.zig
fails to compile with a message like so:Both of these snippets of code make it so
deps.zig
generated on Windows does not compile if local dependencies are used:zigmod/src/common.zig
Line 287 in 6a2d664
This uses the primary separator, which is
\
on Windows.zigmod/src/cmd/fetch.zig
Lines 287 to 293 in 6a2d664
This does not escape special characters.
The text was updated successfully, but these errors were encountered: