Compiling RPCS3 on GhostBSD - Printable Version +- RPCS3 Forums (https://forums.rpcs3.net) +-- Forum: Support & Issues (https://forums.rpcs3.net/forumdisplay.php?fid=17) +--- Forum: Support (https://forums.rpcs3.net/forumdisplay.php?fid=18) +--- Thread: Compiling RPCS3 on GhostBSD (/showthread.php?tid=164202) |
RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 i get this error in ghostbsd. any ideas? RE: Compiling RPCS3 on GhostBSD - derpf - 09-14-2014 Replace instances of #include <malloc.h> with stdlib.h RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 (09-14-2014, 01:31 AM)derpf Wrote: Replace instances of #include <malloc.h> with stdlib.h ok, done. now i have another error, but it's glew related. i need to install it properly first. well, can't fucking understand this one. it can't find glew.h but glew.h is in /usr/local/include/GL/glew.h :S RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 well, i fixed it myself by adding /usr/local/include to cmakelist include directories there's also another malloc error in stblib stb_truetype.h line 370 that i fixed. now there's this: Code: /home/zecoxao/Desktop/rpcs3/rpcs3/Emu/SysCalls/Modules/cellL10n.cpp:322:17: error: RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 i've fixed previous error by casting const char ** to second argument of the function. now i get this: Code: /home/zecoxao/Desktop/rpcs3/rpcs3/Emu/SysCalls/Modules/cellSpurs.cpp:950:23: error: RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 fixed by replacing NULL with 0 (twice this error appears) next error: Code: /home/zecoxao/Desktop/rpcs3/Utilities/rFile.cpp:41:16: error: variable has RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 last error Code: /usr/bin/ld: s: invalid DSO for symbol `libiconv_open' definition RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 fixed by adding this: Code: -L${LOCALBASE}/lib -liconv new linking errors http://pastie.org/private/qz3lbcg60rag4vsxgaa1ow RE: Compiling RPCS3 on GhostBSD - Bigpet - 09-14-2014 you're gonna have to recompile ffmpeg with your toolchain RE: Compiling RPCS3 on GhostBSD - ZeCoxao - 09-14-2014 (09-14-2014, 02:23 PM)Bigpet Wrote: you're gonna have to recompile ffmpeg with your toolchain solved that also, much thanks Bigpet Code: pkg install yasm wget i also had to configure the configure file to avoid TMPDIR shit. for my final error in libinotify, i just added -linotify to the flags. compiles perfectly now i hope these changes go to the main repo spoke too soon segfault when loading SCOOGER here's the backtrace: Code: Program received signal SIGSEGV, Segmentation fault. full with symbols: http://pastie.org/private/bnygyav8wljk12rfdycsa edit:found the cause. it's my graphics card. hardware acceleration for it is not supported in freebsd. oh well, worth the shot |