Advertisement
Guest User

Untitled

a guest
Aug 21st, 2015
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 25.72 KB | None | 0 0
  1. david@HAL9000:~/Downloads/3DSCompile/portal3DS$ make
  2. md2.vsh
  3. {'opcode': 36, 'flags': 0, 'addr': 0, 'ret': 0}
  4. {'opcode': 36, 'flags': 0, 'addr': 0, 'ret': 0}
  5. 0b1010
  6. {'opcode': 40, 'flags': 10, 'addr': 0, 'ret': 0}
  7. {'opcode': 36, 'flags': 0, 'addr': 36, 'ret': 10}
  8. {'opcode': 36, 'flags': 0, 'addr': 36, 'ret': 10}
  9. 0b1010
  10. {'opcode': 40, 'flags': 10, 'addr': 42, 'ret': 3}
  11. logo.vsh
  12. portal.vsh
  13. passthrough.vsh
  14. : no such instruction
  15. : no such instruction
  16. : no such instruction
  17. : no such instruction
  18. : no such instruction
  19. : no such instruction
  20. : no such instruction
  21. : no such instruction
  22. : no such instruction
  23. : no such instruction
  24. : no such instruction
  25. : no such instruction
  26. : no such instruction
  27. : no such instruction
  28. : no such instruction
  29. : no such instruction
  30. : no such instruction
  31. : no such instruction
  32. room.vsh
  33. emancipation.vsh
  34. text.vsh
  35. 0b1010
  36. {'opcode': 40, 'flags': 10, 'addr': 0, 'ret': 0}
  37. 0b1010
  38. {'opcode': 40, 'flags': 10, 'addr': 0, 'ret': 0}
  39. 0b1010
  40. {'opcode': 40, 'flags': 10, 'addr': 0, 'ret': 0}
  41. 0b1010
  42. {'opcode': 40, 'flags': 10, 'addr': 8, 'ret': 12}
  43. 0b1010
  44. {'opcode': 40, 'flags': 10, 'addr': 32, 'ret': 29}
  45. 0b1010
  46. {'opcode': 40, 'flags': 10, 'addr': 30, 'ret': 1}
  47. main.c
  48. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/main.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/main.c -o main.o
  49. /home/david/Downloads/3DSCompile/portal3DS/source/main.c: In function 'renderFrame':
  50. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:199:3: warning: implicit declaration of function 'GPU_SetScissorTest_' [-Wimplicit-function-declaration]
  51. GPU_SetScissorTest_(GPU_SCISSOR_NORMAL, 0, 0, 240, 400);
  52. ^
  53. /home/david/Downloads/3DSCompile/portal3DS/source/main.c: In function 'gameExit':
  54. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:280:2: warning: implicit declaration of function 'exitWallDoors' [-Wimplicit-function-declaration]
  55. exitWallDoors();
  56. ^
  57. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:281:2: warning: implicit declaration of function 'exitElevators' [-Wimplicit-function-declaration]
  58. exitElevators();
  59. ^
  60. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:284:2: warning: implicit declaration of function 'exitBigButtons' [-Wimplicit-function-declaration]
  61. exitBigButtons();
  62. ^
  63. /home/david/Downloads/3DSCompile/portal3DS/source/main.c: In function 'main':
  64. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:389:3: warning: implicit declaration of function 'menuInit' [-Wimplicit-function-declaration]
  65. menuInit();
  66. ^
  67. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:394:4: warning: implicit declaration of function 'menuFrame' [-Wimplicit-function-declaration]
  68. done = menuFrame();
  69. ^
  70. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:397:3: warning: implicit declaration of function 'menuExit' [-Wimplicit-function-declaration]
  71. menuExit();
  72. ^
  73. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:420:3: warning: format '%X' expects argument of type 'unsigned int', but argument 2 has type 'u32' [-Wformat=]
  74. printf("linear heap : %08X\n",linearSpaceFree());
  75. ^
  76. /home/david/Downloads/3DSCompile/portal3DS/source/main.c:420:3: warning: format '%X' expects argument of type 'unsigned int', but argument 2 has type 'u32' [-Wformat=]
  77. texture.c
  78. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/texture.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c -o texture.o
  79. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c: In function 'textureLoadBuffer':
  80. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:227:13: warning: passing argument 1 of 'tileImage8' from incompatible pointer type
  81. tileImage8(buffer, t->data, t->width, t->height);
  82. ^
  83. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:73:6: note: expected 'u8 *' but argument is of type 'u32 *'
  84. void tileImage8(u8* src, u8* dst, int width, int height)
  85. ^
  86. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:227:21: warning: passing argument 2 of 'tileImage8' from incompatible pointer type
  87. tileImage8(buffer, t->data, t->width, t->height);
  88. ^
  89. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:73:6: note: expected 'u8 *' but argument is of type 'u32 *'
  90. void tileImage8(u8* src, u8* dst, int width, int height)
  91. ^
  92. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:235:14: warning: passing argument 1 of 'tileImage8' from incompatible pointer type
  93. tileImage8(buffer, &t->data[offset], w, h);
  94. ^
  95. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:73:6: note: expected 'u8 *' but argument is of type 'u32 *'
  96. void tileImage8(u8* src, u8* dst, int width, int height)
  97. ^
  98. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:235:22: warning: passing argument 2 of 'tileImage8' from incompatible pointer type
  99. tileImage8(buffer, &t->data[offset], w, h);
  100. ^
  101. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/texture.c:73:6: note: expected 'u8 *' but argument is of type 'u32 *'
  102. void tileImage8(u8* src, u8* dst, int width, int height)
  103. ^
  104. text.c
  105. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/text.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/gfx/text.c -o text.o
  106. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/text.c: In function 'textInit':
  107. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/text.c:31:2: warning: implicit declaration of function 'printf' [-Wimplicit-function-declaration]
  108. printf("text %d\n", textUniformOffset);
  109. ^
  110. /home/david/Downloads/3DSCompile/portal3DS/source/gfx/text.c:31:2: warning: incompatible implicit declaration of built-in function 'printf'
  111. md2.c
  112. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/md2.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/gfx/md2.c -o md2.o
  113. lodepng.c
  114. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/lodepng.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/gfx/lodepng.c -o lodepng.o
  115. gs.c
  116. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/gs.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/gfx/gs.c -o gs.o
  117. xmem.c
  118. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/xmem.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/utils/xmem.c -o xmem.o
  119. math.c
  120. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/math.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/utils/math.c -o math.o
  121. dictionary.c
  122. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/dictionary.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/utils/dictionary.c -o dictionary.o
  123. iniparser.c
  124. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/iniparser.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/utils/iniparser.c -o iniparser.o
  125. filesystem.c
  126. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/filesystem.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/utils/filesystem.c -o filesystem.o
  127. /home/david/Downloads/3DSCompile/portal3DS/source/utils/filesystem.c: In function 'filesystemInit':
  128. /home/david/Downloads/3DSCompile/portal3DS/source/utils/filesystem.c:24:2: warning: format '%d' expects argument of type 'int', but argument 2 has type 'char *' [-Wformat=]
  129. printf("%d\n%s\n",argv[0],currentPath);
  130. ^
  131. /home/david/Downloads/3DSCompile/portal3DS/source/utils/filesystem.c:24:2: warning: format '%d' expects argument of type 'int', but argument 2 has type 'char *' [-Wformat=]
  132. energyball.c
  133. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/energyball.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/energyball.c -o energyball.o
  134. platform.c
  135. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/platform.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/platform.c -o platform.o
  136. sludge.c
  137. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/sludge.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/sludge.c -o sludge.o
  138. /home/david/Downloads/3DSCompile/portal3DS/source/game/sludge.c: In function 'updateSludge':
  139. /home/david/Downloads/3DSCompile/portal3DS/source/game/sludge.c:86:4: warning: implicit declaration of function 'resetDispenserCube' [-Wimplicit-function-declaration]
  140. resetDispenserCube(o);
  141. ^
  142. cubes.c
  143. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/cubes.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/cubes.c -o cubes.o
  144. light.c
  145. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/light.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/light.c -o light.o
  146. controls.c
  147. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/controls.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/controls.c -o controls.o
  148. /home/david/Downloads/3DSCompile/portal3DS/source/game/controls.c: In function 'touchControl':
  149. /home/david/Downloads/3DSCompile/portal3DS/source/game/controls.c:43:3: warning: implicit declaration of function 'abs' [-Wimplicit-function-declaration]
  150. rotatePlayer(p, vect3Df((abs(dy)<5) ? 0 : (dy*0.001f), (abs(dx)<5) ? 0 : (dx*0.001f), 0.0f));
  151. ^
  152. player.c
  153. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/player.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/player.c -o player.o
  154. /home/david/Downloads/3DSCompile/portal3DS/source/game/player.c: In function 'updatePlayer':
  155. /home/david/Downloads/3DSCompile/portal3DS/source/game/player.c:170:2: warning: implicit declaration of function 'rand' [-Wimplicit-function-declaration]
  156. if(p->inPortal && !p->oldInPortal)playSFX(portalEnterSFX[rand()%2]);
  157. ^
  158. /home/david/Downloads/3DSCompile/portal3DS/source/game/player.c:167:12: warning: unused variable 'prevPosition' [-Wunused-variable]
  159. vect3Df_s prevPosition = p->object.position;
  160. ^
  161. room.c
  162. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/room.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c -o room.o
  163. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c: In function 'initRoomGrid':
  164. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:209:2: warning: format '%d' expects argument of type 'int', but argument 2 has type 's32' [-Wformat=]
  165. printf("%d %d\n", r->rectangleGridSize.x, r->rectangleGridSize.z);
  166. ^
  167. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:209:2: warning: format '%d' expects argument of type 'int', but argument 3 has type 's32' [-Wformat=]
  168. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:209:2: warning: format '%d' expects argument of type 'int', but argument 2 has type 's32' [-Wformat=]
  169. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:209:2: warning: format '%d' expects argument of type 'int', but argument 3 has type 's32' [-Wformat=]
  170. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c: In function 'generateRectangleGeometry':
  171. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 2 has type 's32' [-Wformat=]
  172. printf("%d %d : %d %d\n",p1.x,p1.y,p2.x,p2.y);
  173. ^
  174. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 3 has type 's32' [-Wformat=]
  175. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 4 has type 's32' [-Wformat=]
  176. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 5 has type 's32' [-Wformat=]
  177. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 2 has type 's32' [-Wformat=]
  178. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 3 has type 's32' [-Wformat=]
  179. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 4 has type 's32' [-Wformat=]
  180. /home/david/Downloads/3DSCompile/portal3DS/source/game/room.c:508:4: warning: format '%d' expects argument of type 'int', but argument 5 has type 's32' [-Wformat=]
  181. pointphysics.c
  182. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/pointphysics.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/pointphysics.c -o pointphysics.o
  183. elevator.c
  184. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/elevator.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/elevator.c -o elevator.o
  185. bigbutton.c
  186. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/bigbutton.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/bigbutton.c -o bigbutton.o
  187. walldoor.c
  188. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/walldoor.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/walldoor.c -o walldoor.o
  189. /home/david/Downloads/3DSCompile/portal3DS/source/game/walldoor.c: In function 'setupWallDoor':
  190. /home/david/Downloads/3DSCompile/portal3DS/source/game/walldoor.c:111:2: warning: implicit declaration of function 'insertRoom' [-Wimplicit-function-declaration]
  191. insertRoom(r, &elevatorRoom, position, orientation);
  192. ^
  193. /home/david/Downloads/3DSCompile/portal3DS/source/game/walldoor.c:96:15: warning: unused variable 'recp' [-Wunused-variable]
  194. rectangle_s* recp;
  195. ^
  196. emancipation.c
  197. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/emancipation.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/emancipation.c -o emancipation.o
  198. material.c
  199. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/material.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/material.c -o material.o
  200. camera.c
  201. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/camera.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/camera.c -o camera.o
  202. timedbutton.c
  203. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/timedbutton.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/timedbutton.c -o timedbutton.o
  204. portal.c
  205. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/portal.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/portal.c -o portal.o
  206. sfx.c
  207. arm-none-eabi-gcc -MMD -MP -MF /home/david/Downloads/3DSCompile/portal3DS/build/sfx.d -g -Wall -O2 -mword-relocations -fomit-frame-pointer -ffast-math -march=armv6k -mtune=mpcore -mfloat-abi=hard -I/home/david/Downloads/3DSCompile/portal3DS/include -I/home/david/devkitPro/libctru/include -I/home/david/Downloads/3DSCompile/portal3DS/build -DARM11 -D_3DS -mfp16-format=ieee -c /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c -o sfx.o
  208. /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c: In function 'playSFX':
  209. /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:86:2: error: incompatible type for argument 4 of 'csndPlaySound'
  210. csndPlaySound(channel+8, s->format, 22050, 1.0, 0.0, (u32*)s->data, (u32*)s->data, s->size);
  211. ^
  212. In file included from /home/david/devkitPro/libctru/include/3ds.h:23:0,
  213. from /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:3:
  214. /home/david/devkitPro/libctru/include/3ds/services/csnd.h:101:8: note: expected 'void *' but argument is of type 'double'
  215. Result csndPlaySound(int chn, u32 flags, u32 sampleRate, void* data0, void* data1, u32 size);
  216. ^
  217. /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:86:2: error: incompatible type for argument 5 of 'csndPlaySound'
  218. csndPlaySound(channel+8, s->format, 22050, 1.0, 0.0, (u32*)s->data, (u32*)s->data, s->size);
  219. ^
  220. In file included from /home/david/devkitPro/libctru/include/3ds.h:23:0,
  221. from /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:3:
  222. /home/david/devkitPro/libctru/include/3ds/services/csnd.h:101:8: note: expected 'void *' but argument is of type 'double'
  223. Result csndPlaySound(int chn, u32 flags, u32 sampleRate, void* data0, void* data1, u32 size);
  224. ^
  225. /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:86:55: warning: passing argument 6 of 'csndPlaySound' makes integer from pointer without a cast
  226. csndPlaySound(channel+8, s->format, 22050, 1.0, 0.0, (u32*)s->data, (u32*)s->data, s->size);
  227. ^
  228. In file included from /home/david/devkitPro/libctru/include/3ds.h:23:0,
  229. from /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:3:
  230. /home/david/devkitPro/libctru/include/3ds/services/csnd.h:101:8: note: expected 'u32' but argument is of type 'u32 *'
  231. Result csndPlaySound(int chn, u32 flags, u32 sampleRate, void* data0, void* data1, u32 size);
  232. ^
  233. /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:86:2: error: too many arguments to function 'csndPlaySound'
  234. csndPlaySound(channel+8, s->format, 22050, 1.0, 0.0, (u32*)s->data, (u32*)s->data, s->size);
  235. ^
  236. In file included from /home/david/devkitPro/libctru/include/3ds.h:23:0,
  237. from /home/david/Downloads/3DSCompile/portal3DS/source/game/sfx.c:3:
  238. /home/david/devkitPro/libctru/include/3ds/services/csnd.h:101:8: note: declared here
  239. Result csndPlaySound(int chn, u32 flags, u32 sampleRate, void* data0, void* data1, u32 size);
  240. ^
  241. /home/david/devkitPro/devkitARM/base_rules:84: recipe for target 'sfx.o' failed
  242. make[1]: *** [sfx.o] Error 1
  243. Makefile:126: recipe for target 'build' failed
  244. make: *** [build] Error 2
  245. david@HAL9000:~/Downloads/3DSCompile/portal3DS$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement