Advertisement
Guest User

Untitled

a guest
Dec 23rd, 2018
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CMake 2.49 KB | None | 0 0
  1. [ 12%] Building C object CMakeFiles/TrophaxSE.dir/src/main.c.obj
  2. In file included from C:/Users/SilicaAndPina/Documents/trophaxse/app/src/main.c:15:0:
  3. C:/Users/SilicaAndPina/Documents/trophaxse/app/src/debugScreen.h: In function 'psvDebugScreenEscape':
  4. C:/Users/SilicaAndPina/Documents/trophaxse/app/src/debugScreen.h:66:26: warning: implicit declaration of function 'CLEARSCRN' [-Wimplicit-function-declaration]
  5.    case 'K': if(arg[0]==0)CLEARSCRN(coordY, coordY + FONT_SIZE, coordX, SCREEN_WIDTH);//from curosr to end
  6.                           ^~~~~~~~~
  7. C:/Users/SilicaAndPina/Documents/trophaxse/app/src/debugScreen.h: In function 'psvDebugScreenPuts':
  8. C:/Users/SilicaAndPina/Documents/trophaxse/app/src/debugScreen.h:159:80: warning: pointer targets in passing argument 6 of 'vita2d_pgf_draw_textf' differ in signedness [-Wpointer-sign]
  9.   coordX += FONT_SIZE*vita2d_pgf_draw_textf(pgf, coordX, coordY, colorFg, 1.0f, text );
  10.                                                                                 ^~~~
  11. In file included from C:/Users/SilicaAndPina/Documents/trophaxse/app/src/debugScreen.h:8:0,
  12.                  from C:/Users/SilicaAndPina/Documents/trophaxse/app/src/main.c:15:
  13. c:\msys64\usr\local\vitasdk\arm-vita-eabi\include\vita2d.h:160:5: note: expected 'const char *' but argument is of type 'const unsigned char *'
  14.  int vita2d_pgf_draw_textf(vita2d_pgf *font, int x, int y, unsigned int color, float scale, const char *text, ...);
  15.      ^~~~~~~~~~~~~~~~~~~~~
  16. In file included from C:/Users/SilicaAndPina/Documents/trophaxse/app/src/main.c:15:0:
  17. At top level:
  18. C:/Users/SilicaAndPina/Documents/trophaxse/app/src/debugScreen.h:41:14: warning: 'base' defined but not used [-Wunused-variable]
  19.  static void* base; // pointer to frame buffer
  20.               ^~~~
  21. [ 25%] Linking C executable TrophaxSE
  22. CMakeFiles/TrophaxSE.dir/src/main.c.obj: In function `psvDebugScreenEscape':
  23. main.c:(.text+0x3ec): undefined reference to `CLEARSCRN'
  24. main.c:(.text+0x41a): undefined reference to `CLEARSCRN'
  25. main.c:(.text+0x442): undefined reference to `CLEARSCRN'
  26. main.c:(.text+0x474): undefined reference to `CLEARSCRN'
  27. main.c:(.text+0x490): undefined reference to `CLEARSCRN'
  28. CMakeFiles/TrophaxSE.dir/src/main.c.obj:main.c:(.text+0x4a6): more undefined references to `CLEARSCRN' follow
  29. collect2.exe: error: ld returned 1 exit status
  30. make[2]: *** [CMakeFiles/TrophaxSE.dir/build.make:95: TrophaxSE] Error 1
  31. make[1]: *** [CMakeFiles/Makefile2:105: CMakeFiles/TrophaxSE.dir/all] Error 2
  32. make: *** [Makefile:84: all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement