We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e198be1 commit 509e002Copy full SHA for 509e002
release-win32.sh
@@ -0,0 +1,3 @@
1
+mkdir -p bin/
2
+i686-w64-mingw32.static-gcc -o bin/z64yartool.exe -Os -s -flto -DNDEBUG -Wall -Wextra -Wno-unused-function -lm -std=c99 -pedantic -Iinclude src/*.c
3
+
src/z64yartool.c
@@ -139,7 +139,11 @@ static int YarDump(const char *input)
139
140
RecipePrint(recipe);
141
142
+#ifdef _WIN32
143
+ mkdir(recipe->imageDir);
144
+#else
145
mkdir(recipe->imageDir, 0777);
146
+#endif
147
yarEntry = yar->head;
148
for (struct RecipeItem *this = recipe->head
149
; this && yarEntry
0 commit comments