Difference between revisions of "Talk:Update Downloader"
WiiCracker (talk | contribs) (→NOT COMPILEABLE!: new section) |
WiiCracker (talk | contribs) |
||
Line 7: | Line 7: | ||
I cant compile this app. Not under MinGW, CygWin, Native Linux! | I cant compile this app. Not under MinGW, CygWin, Native Linux! | ||
+ | I get following warnings/errors: | ||
+ | gcc -c -Wall -O2 aes.c -o aes.o | ||
+ | |||
+ | gcc -c -Wall -O2 main.c -o main.o | ||
+ | |||
+ | In file included from main.c:33: | ||
+ | |||
+ | endian.h: In function `be64': | ||
+ | |||
+ | endian.h:28: warning: integer constant is too large for "long" type | ||
+ | |||
+ | endian.h:29: warning: integer constant is too large for "long" type | ||
+ | |||
+ | endian.h:30: warning: integer constant is too large for "long" type | ||
+ | |||
+ | main.c: In function `get_title_key': | ||
+ | |||
+ | main.c:76: warning: implicit declaration of function `aes_set_key' | ||
+ | |||
+ | main.c: In function `fix_sysmenu': | ||
+ | |||
+ | main.c:149: error: `kernel_buf' undeclared (first use in this function) | ||
+ | |||
+ | main.c:149: error: (Each undeclared identifier is reported only once | ||
+ | |||
+ | main.c:149: error: for each function it appears in.) | ||
+ | |||
+ | main.c: In function `download_all_versions': | ||
+ | |||
+ | main.c:311: error: too many arguments to function `mkdir' | ||
+ | |||
+ | main.c: In function `main': | ||
+ | |||
+ | main.c:364: error: too many arguments to function `mkdir' | ||
+ | |||
+ | make: *** [main.o] Error 1 | ||
+ | |||
+ | rm aes.o |
Revision as of 20:48, 8 December 2008
Why can't I use the Update Downloader on Windows Vista?
-Because Vista is evil --Jedicommando 20:40, 7 December 2008 (UTC)
Be sure to combine the files into an .exe when you release it! I HATE having to do it myself. --Jedicommando 20:40, 7 December 2008 (UTC)
NOT COMPILEABLE!
I cant compile this app. Not under MinGW, CygWin, Native Linux! I get following warnings/errors: gcc -c -Wall -O2 aes.c -o aes.o
gcc -c -Wall -O2 main.c -o main.o
In file included from main.c:33:
endian.h: In function `be64':
endian.h:28: warning: integer constant is too large for "long" type
endian.h:29: warning: integer constant is too large for "long" type
endian.h:30: warning: integer constant is too large for "long" type
main.c: In function `get_title_key':
main.c:76: warning: implicit declaration of function `aes_set_key'
main.c: In function `fix_sysmenu':
main.c:149: error: `kernel_buf' undeclared (first use in this function)
main.c:149: error: (Each undeclared identifier is reported only once
main.c:149: error: for each function it appears in.)
main.c: In function `download_all_versions':
main.c:311: error: too many arguments to function `mkdir'
main.c: In function `main':
main.c:364: error: too many arguments to function `mkdir'
make: *** [main.o] Error 1
rm aes.o