Compare commits

..

2 Commits

Author SHA1 Message Date
Devin Dooley
db90803202
Merge pull request #4648 from oittaa/patch-1
Zig.gitignore add *.o
2025-05-27 15:46:25 -07:00
oittaa
6bc658a1c7
Zig.gitignore add *.o
$ zig version
0.14.1

If you run `zig build-exe myfile.zig` it will generate myfile.o in addition to the executable in the current directory. I think those should be ignored even though they are usually in the zig-out directory if you use the proper build system.
2025-05-25 21:22:56 +02:00

View File

@ -1,2 +1,3 @@
.zig-cache/ .zig-cache/
zig-out/ zig-out/
*.o