Virtual Jaguar V2.12 compilado en Ubuntu 14.04

El espacio para revivir clásicos (y no tanto) mediante emuladores. Un lugar dedicado 100% a la emulación.
Responder
Avatar de Usuario
Yay
Machacador de botones
Machacador de botones
Mensajes: 3945
Registrado: 17/03/12 8:31
Ubicación: en el Sábado de Farfisa

Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por Yay » 13/10/15 4:18

http://www.retrovideogamer.co.uk/index. ... icseen#new

** Descargas

Virtual Jaguar Source

Descarga Directa del emulador

Información para editar el emulador

Información para compilar el emulador

** Tutoriales para compilar en Ubuntu

https://help.ubuntu.com/community/CompilingEasyHowTo
https://help.ubuntu.com/community/CompilingSoftware


Now navigate to virtualjaguar-src-file.cpp and open it with gedit (or whichever editor) and in my file it's line 255. It says:
// We can assume we have JST_NONE at this point.
return false;

Change it to read:
// We can assume we have JST_NONE at this point.
// CW - I'm going to assume this is a BJL file that loads/runs at 0x4000
WriteLog("FILE: Setting up homebrew (BJL)... Run address: %08X, length: %08X\n", 0x4000, jaguarROMSize);
memcpy(jagMemSpace + 0x4000, buffer, jaguarROMSize);
delete[] buffer;
jaguarRunAddress = 0x4000;
return true;

Then quick save and exit file.cpp

~To run Virtual Jaguar~
From Terminal:
Ubuntu14@Ubuntu14-HP-Pavilion-g7-Notebook-PC:~$ cd virtualjaguar
Ubuntu14@Ubuntu14-HP-Pavilion-g7-Notebook-PC:~/virtualjaguar$ ./virtualjaguar

Código: Seleccionar todo

From Terminal:
[code]Ubuntu14@Ubuntu14-HP-Pavilion-g7-Notebook-PC:~/virtualjaguar$ make
-e *** Preparing to compile Virtual Jaguar...
-e *** Making Customized UAE 68K Core...
make[1]: Entering directory `/home/Ubuntu14/virtualjaguar/src/m68000'
-e *** Compiling build68k.c ...
-e *** Generating cpudefs.c...
-e *** Generating gencpu...
-e *** Generating cpuemu.c...
-e *** Compiling obj/cpustbl.c...
-e *** Compiling obj/cpudefs.c...
-e *** Compiling obj/cpuemu.c...
-e *** Compiling cpuextra.c...
-e *** Compiling readcpu.c...
-e *** Compiling m68kinterface.c...
-e *** Compiling m68kdasm.c...
ar: creating obj/libm68k.a
Done!
make[1]: Leaving directory `/home/Ubuntu14/virtualjaguar/src/m68000'
-e *** Making Virtual Jaguar core...
make[1]: Entering directory `/home/Ubuntu14/virtualjaguar'
-e *** Compiling src/blitter.cpp...
src/blitter.cpp:3590:2: warning: #warning srcdreadd is not properly initialized! [-Wcpp]
 #warning srcdreadd is not properly initialized!
  ^
-e *** Compiling src/cdintf.cpp...
src/cdintf.cpp:93:2: warning: #warning "!!! FIX !!! CDIntfReadBlock not implemented!" [-Wcpp]
 #warning "!!! FIX !!! CDIntfReadBlock not implemented!"
  ^
src/cdintf.cpp:101:2: warning: #warning "!!! FIX !!! CDIntfGetNumSessions not implemented!" [-Wcpp]
 #warning "!!! FIX !!! CDIntfGetNumSessions not implemented!"
  ^
src/cdintf.cpp:109:2: warning: #warning "!!! FIX !!! CDIntfSelectDrive not implemented!" [-Wcpp]
 #warning "!!! FIX !!! CDIntfSelectDrive not implemented!"
  ^
src/cdintf.cpp:116:2: warning: #warning "!!! FIX !!! CDIntfGetCurrentDrive not implemented!" [-Wcpp]
 #warning "!!! FIX !!! CDIntfGetCurrentDrive not implemented!"
  ^
src/cdintf.cpp:124:2: warning: #warning "!!! FIX !!! CDIntfGetDriveName driveNum is currently ignored!" [-Wcpp]
 #warning "!!! FIX !!! CDIntfGetDriveName driveNum is currently ignored!"
  ^
src/cdintf.cpp:139:2: warning: #warning "!!! FIX !!! CDIntfGetSessionInfo not implemented!" [-Wcpp]
 #warning "!!! FIX !!! CDIntfGetSessionInfo not implemented!"
  ^
src/cdintf.cpp:147:2: warning: #warning "!!! FIX !!! CDIntfTrackInfo not implemented!" [-Wcpp]
 #warning "!!! FIX !!! CDIntfTrackInfo not implemented!"
  ^
-e *** Compiling src/cdrom.cpp...
src/cdrom.cpp:356:39: warning: trigraph ??) ignored, use -trigraphs to enable [-Wtrigraphs]
    WriteLog("CDROM: Reading DS_DATA (???), cdCmd=$%04X\n", cdCmd);
 ^
-e *** Compiling src/crc32.cpp...
-e *** Compiling src/dac.cpp...
-e *** Compiling src/dsp.cpp...
src/dsp.cpp:806:2: warning: #warning "!!! DSP IRQs that go to the 68K have to be routed thru TOM !!! FIX !!!" [-Wcpp]
 #warning "!!! DSP IRQs that go to the 68K have to be routed thru TOM !!! FIX !!!"
  ^
src/dsp.cpp:1189:43: warning: missing terminating ' character [enabled by default]
 #warning !!! No checking done to see if we're using pipelined DSP or not !!!
                                           ^
src/dsp.cpp:1189:2: warning: #warning !!! No checking done to see if we're using pipelined DSP or not !!! [-Wcpp]
 #warning !!! No checking done to see if we're using pipelined DSP or not !!!
  ^
-e *** Compiling src/eeprom.cpp...
src/eeprom.cpp: In function ‘void ReadEEPROMFromFile(FILE*, uint16_t*)’:
src/eeprom.cpp:144:29: warning: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result [-Wunused-result]
  fread(buffer, 1, 128, file);
                             ^
-e *** Compiling src/event.cpp...
-e *** Compiling src/file.cpp...
src/file.cpp:48:2: warning: #warning "!!! FIX !!! Should have sanity checking for ROM size to prevent buffer overflow!" [-Wcpp]
 #warning "!!! FIX !!! Should have sanity checking for ROM size to prevent buffer overflow!"
  ^
src/file.cpp:357:2: warning: #warning "!!! FIX !!! Should have sanity checking for ROM size to prevent buffer overflow!" [-Wcpp]
 #warning "!!! FIX !!! Should have sanity checking for ROM size to prevent buffer overflow!"
  ^
src/file.cpp:382:2: warning: #warning "!!! Checking for image by extension can be fooled !!!" [-Wcpp]
 #warning "!!! Checking for image by extension can be fooled !!!"
  ^
-e *** Compiling src/filedb.cpp...
-e *** Compiling src/gpu.cpp...
src/gpu.cpp:2024:2: warning: #warning "!!! Alignment issues, need to find definitive final word on this !!!" [-Wcpp]
 #warning "!!! Alignment issues, need to find definitive final word on this !!!"
  ^
-e *** Compiling src/jagbios.cpp...
-e *** Compiling src/jagbios2.cpp...
-e *** Compiling src/jagcdbios.cpp...
-e *** Compiling src/jagdevcdbios.cpp...
-e *** Compiling src/jagstub1bios.cpp...
-e *** Compiling src/jagstub2bios.cpp...
-e *** Compiling src/jagdasm.cpp...
-e *** Compiling src/jaguar.cpp...
src/jaguar.cpp:472:49: warning: missing terminating ' character [enabled by default]
 this crap which is currently scattered over Hell's Half Acre(tm).
                                                 ^
-e *** Compiling src/jerry.cpp...
-e *** Compiling src/joystick.cpp...
src/joystick.cpp:90:2: warning: #warning "No bounds checking done in JoystickReadByte!" [-Wcpp]
 #warning "No bounds checking done in JoystickReadByte!"
  ^
src/joystick.cpp:164:2: warning: #warning "No bounds checking done for JoystickWriteWord!" [-Wcpp]
 #warning "No bounds checking done for JoystickWriteWord!"
  ^
-e *** Compiling src/log.cpp...
-e *** Compiling src/memory.cpp...
src/memory.cpp:134:53: warning: trigraph ??) ignored, use -trigraphs to enable [-Wtrigraphs]
 #warning "Need to separate out this stuff (or do we???)"
 ^
src/memory.cpp:134:2: warning: #warning "Need to separate out this stuff (or do we???)" [-Wcpp]
 #warning "Need to separate out this stuff (or do we???)"
  ^
-e *** Compiling src/mmu.cpp...
-e *** Compiling src/op.cpp...
src/op.cpp:441:2: warning: #warning "Need to fix this so that when an GPU object IRQ happens, we can pick up OP processing where we left off. !!! FIX !!!" [-Wcpp]
 #warning "Need to fix this so that when an GPU object IRQ happens, we can pick up OP processing where we left off. !!! FIX !!!"
  ^
src/op.cpp:444:2: warning: #warning "!!! NEED TO HANDLE MULTIPLE FIELDS PROPERLY !!!" [-Wcpp]
 #warning "!!! NEED TO HANDLE MULTIPLE FIELDS PROPERLY !!!"
  ^
src/op.cpp:633:2: warning: #warning "!!! Link address is not linked properly for all object types !!!" [-Wcpp]
 #warning "!!! Link address is not linked properly for all object types !!!"
  ^
src/op.cpp:634:2: warning: #warning "!!! Only BITMAP is properly handled !!!" [-Wcpp]
 #warning "!!! Only BITMAP is properly handled !!!"
  ^
src/op.cpp:778:2: warning: #warning "Need to fix OP GPU IRQ handling! !!! FIX !!!" [-Wcpp]
 #warning "Need to fix OP GPU IRQ handling! !!! FIX !!!"
  ^
src/op.cpp:796:2: warning: #warning "!!! Possibly bad CC handling in OP (missing 1 bit) !!!" [-Wcpp]
 #warning "!!! Possibly bad CC handling in OP (missing 1 bit) !!!"
  ^
src/op.cpp:826:2: warning: #warning "Unhandled condition code causes emulator to crash... !!! FIX !!!" [-Wcpp]
 #warning "Unhandled condition code causes emulator to crash... !!! FIX !!!"
  ^
src/op.cpp:868:2: warning: #warning "Better would be to count how many actual cycles it used and bail out/reenter to properly simulate an overloaded OP... !!! FIX !!!" [-Wcpp]
 #warning "Better would be to count how many actual cycles it used and bail out/reenter to properly simulate an overloaded OP... !!! FIX !!!"
  ^
src/op.cpp:923:2: warning: #warning "!!! Need to investigate iwidth == 0 behavior on real hardware !!!" [-Wcpp]
 #warning "!!! Need to investigate iwidth == 0 behavior on real hardware !!!"
  ^
-e *** Compiling src/settings.cpp...
-e *** Compiling src/state.cpp...
-e *** Compiling src/tom.cpp...
src/tom.cpp:568:2: warning: #warning "This is not endian-safe. !!! FIX !!!" [-Wcpp]
 #warning "This is not endian-safe. !!! FIX !!!"
  ^
src/tom.cpp:644:2: warning: #warning "Used in only one place (and for debug purposes): OBJECTP.CPP !!! FIX !!!" [-Wcpp]
 #warning "Used in only one place (and for debug purposes): OBJECTP.CPP !!! FIX !!!"
  ^
src/tom.cpp:861:2: warning: #warning "!!! Need to handle multiple fields properly !!!" [-Wcpp]
 #warning "!!! Need to handle multiple fields properly !!!"
  ^
src/tom.cpp:994:2: warning: #warning "The following doesn't put BORDER color on the sides... !!! FIX !!!" [-Wcpp]
 #warning "The following doesn't put BORDER color on the sides... !!! FIX !!!"
  ^
src/tom.cpp:1620:2: warning: #warning "!!! Watch out for unaligned writes here !!! FIX !!!" [-Wcpp]
 #warning "!!! Watch out for unaligned writes here !!! FIX !!!"
  ^
src/tom.cpp:1628:2: warning: #warning "Actually, we should check to see if the Enable bit of VMODE is set before doing this... !!! FIX !!!" [-Wcpp]
 #warning "Actually, we should check to see if the Enable bit of VMODE is set before doing this... !!! FIX !!!"
  ^
src/tom.cpp:1708:2: warning: #warning "!!! Need to get rid of this dependency !!!" [-Wcpp]
 #warning "!!! Need to get rid of this dependency !!!"
  ^
src/tom.cpp:1718:2: warning: #warning "!!! TOM: ResizeScreen commented out !!!" [-Wcpp]
 #warning "!!! TOM: ResizeScreen commented out !!!"
  ^
-e *** Compiling src/universalhdr.cpp...
-e *** Compiling src/unzip.cpp...
src/unzip.cpp: In function ‘bool GetZIPHeader(FILE*, ZipFileEntry&)’:
src/unzip.cpp:63:47: warning: ignoring return value of ‘size_t fread(void*, size_t, size_t, FILE*)’, declared with attribute warn_unused_result [-Wunused-result]
   fread(ze.filename, 1, ze.filenameLength, fp);
                                               ^
-e *** Compiling src/wavetable.cpp...
ar: creating obj/libjaguarcore.a
Done!
make[1]: Leaving directory `/home/Ubuntu14/virtualjaguar'
-e *** Libraries successfully made.
-e *** Creating Qt makefile...
-e *** Making Virtual Jaguar GUI...
make[1]: Entering directory `/home/Ubuntu14/virtualjaguar'
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/about.o src/gui/about.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/alpinetab.o src/gui/alpinetab.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/app.o src/gui/app.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/configdialog.o src/gui/configdialog.cpp
src/gui/configdialog.cpp:89:2: warning: #warning "!!! Need to load settings from controller profile !!!" [-Wcpp]
 #warning "!!! Need to load settings from controller profile !!!"
  ^
src/gui/configdialog.cpp:125:2: warning: #warning "!!! Need to save settings to controller profile !!!" [-Wcpp]
 #warning "!!! Need to save settings to controller profile !!!"
  ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/controllertab.o src/gui/controllertab.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/controllerwidget.o src/gui/controllerwidget.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/filelistmodel.o src/gui/filelistmodel.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/filepicker.o src/gui/filepicker.cpp
src/gui/filepicker.cpp: In member function ‘void FilePickerWindow::UpdateSelection(const QModelIndex&, const QModelIndex&)’:
src/gui/filepicker.cpp:372:24: warning: suggest parentheses around ‘&&’ within ‘||’ [-Wparentheses]
   else if (haveUnknown && (fileType == JST_ABS_TYPE1 || fileType == JST_ABS_TYPE2
                        ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/filethread.o src/gui/filethread.cpp
src/gui/filethread.cpp:97:2: warning: #warning "!!! Need to come up with some kind of cacheing scheme here !!!" [-Wcpp]
 #warning "!!! Need to come up with some kind of cacheing scheme here !!!"
  ^
src/gui/filethread.cpp:193:2: warning: #warning "!!! Should do binary partition search here !!!" [-Wcpp]
 #warning "!!! Should do binary partition search here !!!"
  ^
src/gui/filethread.cpp: In member function ‘void FileThread::HandleFile(QFileInfo)’:
src/gui/filethread.cpp:172:9: warning: unused variable ‘successful’ [-Wunused-variable]
    bool successful = label.loadFromData(buffer, size);
         ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/gamepad.o src/gui/gamepad.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/generaltab.o src/gui/generaltab.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/glwidget.o src/gui/glwidget.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/help.o src/gui/help.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/imagedelegate.o src/gui/imagedelegate.cpp
src/gui/imagedelegate.cpp:91:2: warning: #warning "!!! FIX !!! Need to create properly scaled down cart/label images!" [-Wcpp]
 #warning "!!! FIX !!! Need to create properly scaled down cart/label images!"
  ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/keygrabber.o src/gui/keygrabber.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/mainwin.o src/gui/mainwin.cpp
src/gui/mainwin.cpp:1003:2: warning: #warning "!!! Need to execute the DSP thread for 1 frame too !!!" [-Wcpp]
 #warning "!!! Need to execute the DSP thread for 1 frame too !!!"
  ^
src/gui/mainwin.cpp:1126:2: warning: #warning "!!! Need to check the window geometry to see if the positions are legal !!!" [-Wcpp]
 #warning "!!! Need to check the window geometry to see if the positions are legal !!!"
  ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/profile.o src/gui/profile.cpp
src/gui/profile.cpp: In function ‘void AutoConnectProfiles()’:
src/gui/profile.cpp:404:7: warning: suggest braces around empty body in an ‘else’ statement [-Wempty-body]
       ; // Alert user to conflict and ask to resolve
       ^
src/gui/profile.cpp:418:7: warning: suggest braces around empty body in an ‘else’ statement [-Wempty-body]
       ; // Alert user to conflict and ask to resolve
       ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/cpubrowser.o src/gui/debug/cpubrowser.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/m68kdasmbrowser.o src/gui/debug/m68kdasmbrowser.cpp
src/gui/debug/m68kdasmbrowser.cpp: In member function ‘void M68KDasmBrowserWindow::RefreshContents()’:
src/gui/debug/m68kdasmbrowser.cpp:77:31: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
   for(int j=0; j<strlen(string); j++)
                               ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/memorybrowser.o src/gui/debug/memorybrowser.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/opbrowser.o src/gui/debug/opbrowser.cpp
src/gui/debug/opbrowser.cpp: In member function ‘void OPBrowserWindow::DumpBitmapCore(QString&, uint64_t, uint64_t)’:
src/gui/debug/opbrowser.cpp:215:11: warning: unused variable ‘link’ [-Wunused-variable]
  uint32_t link = ((p0 >> 24) & 0x7FFFF) << 3;
           ^
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/riscdasmbrowser.o src/gui/debug/riscdasmbrowser.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/alpinetab.h -o obj/moc_alpinetab.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_alpinetab.o obj/moc_alpinetab.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/configdialog.h -o obj/moc_configdialog.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_configdialog.o obj/moc_configdialog.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/controllertab.h -o obj/moc_controllertab.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_controllertab.o obj/moc_controllertab.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/controllerwidget.h -o obj/moc_controllerwidget.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_controllerwidget.o obj/moc_controllerwidget.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/filepicker.h -o obj/moc_filepicker.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_filepicker.o obj/moc_filepicker.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/filethread.h -o obj/moc_filethread.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_filethread.o obj/moc_filethread.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/generaltab.h -o obj/moc_generaltab.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_generaltab.o obj/moc_generaltab.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/glwidget.h -o obj/moc_glwidget.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_glwidget.o obj/moc_glwidget.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/keygrabber.h -o obj/moc_keygrabber.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_keygrabber.o obj/moc_keygrabber.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/mainwin.h -o obj/moc_mainwin.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_mainwin.o obj/moc_mainwin.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/debug/cpubrowser.h -o obj/moc_cpubrowser.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_cpubrowser.o obj/moc_cpubrowser.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/debug/m68kdasmbrowser.h -o obj/moc_m68kdasmbrowser.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_m68kdasmbrowser.o obj/moc_m68kdasmbrowser.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/debug/memorybrowser.h -o obj/moc_memorybrowser.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_memorybrowser.o obj/moc_memorybrowser.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/debug/opbrowser.h -o obj/moc_opbrowser.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_opbrowser.o obj/moc_opbrowser.cpp
/usr/lib/i386-linux-gnu/qt4/bin/moc -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj src/gui/debug/riscdasmbrowser.h -o obj/moc_riscdasmbrowser.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/moc_riscdasmbrowser.o obj/moc_riscdasmbrowser.cpp
/usr/lib/i386-linux-gnu/qt4/bin/rcc -name virtualjaguar src/gui/virtualjaguar.qrc -o obj/qrc_virtualjaguar.cpp
g++ -c -pipe `sdl-config --cflags` -O2 -ffast-math -fomit-frame-pointer -Wall -W -D_REENTRANT -D__GCCUNIX__ -DQT_NO_DEBUG -DQT_OPENGL_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_SHARED -I/usr/share/qt4/mkspecs/linux-g++ -I. -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -I/usr/include/qt4/QtOpenGL -I/usr/include/qt4 -Isrc -Isrc/gui -I/usr/X11R6/include -Iobj -o obj/qrc_virtualjaguar.o obj/qrc_virtualjaguar.cpp
g++  -o virtualjaguar obj/about.o obj/alpinetab.o obj/app.o obj/configdialog.o obj/controllertab.o obj/controllerwidget.o obj/filelistmodel.o obj/filepicker.o obj/filethread.o obj/gamepad.o obj/generaltab.o obj/glwidget.o obj/help.o obj/imagedelegate.o obj/keygrabber.o obj/mainwin.o obj/profile.o obj/cpubrowser.o obj/m68kdasmbrowser.o obj/memorybrowser.o obj/opbrowser.o obj/riscdasmbrowser.o obj/moc_alpinetab.o obj/moc_configdialog.o obj/moc_controllertab.o obj/moc_controllerwidget.o obj/moc_filepicker.o obj/moc_filethread.o obj/moc_generaltab.o obj/moc_glwidget.o obj/moc_keygrabber.o obj/moc_mainwin.o obj/moc_cpubrowser.o obj/moc_m68kdasmbrowser.o obj/moc_memorybrowser.o obj/moc_opbrowser.o obj/moc_riscdasmbrowser.o obj/qrc_virtualjaguar.o    -L/usr/lib/i386-linux-gnu -L/usr/X11R6/lib -Lobj -Lsrc/m68000/obj -ljaguarcore -lm68k -lz `sdl-config --libs` -lQtOpenGL -lQtGui -lQtCore -lGL -lpthread
make[1]: Leaving directory `/home/Ubuntu14/virtualjaguar'
-e *** Success!
Ubuntu14@Ubuntu14-HP-Pavilion-g7-Notebook-PC:~/virtualjaguar$

Hace tiempo que intento adentrarme en Linux, ahora puede ser un buen momento para intentar sacar esto que me sigue pareciendo casi de ingenieros :)



Saludos
Imagen

Avatar de Usuario
the98
Check Point!
Check Point!
Mensajes: 9498
Registrado: 03/07/12 11:45

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por the98 » 13/10/15 8:06

:shock: :shock:

Yay, ¿para qué copias toda la salida del proceso de compilación? No hace falta pegar eso en el foro. Hasta confunde.

Avatar de Usuario
Shinnok
Admin
Admin
Mensajes: 18780
Registrado: 20/09/06 20:54
Frase: Nothing, Nothing Can Prepare You !
Ubicación: Outworld
Contactar:

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por Shinnok » 13/10/15 8:29

Está hablando del fasooooooooo jajaja grande yay

Enviado desde mi GT-I9300 mediante Tapatalk
Imagen

Avatar de Usuario
Cross
Kamikaze en 1942
Kamikaze en 1942
Mensajes: 6216
Registrado: 23/05/15 1:27
Frase: Aguanten lo' juevitoh de snes
Ubicación: URUGUAY

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por Cross » 14/10/15 1:16

Shinnok escribió:Está hablando del fasooooooooo jajaja grande yay

Enviado desde mi GT-I9300 mediante Tapatalk
Jajajaja, aguanten los procesos de compilacion vieja no me importa nada
Para todos aquellos que tuvieron la revista Número 1 de Club Nintendo que se comercializaba en Argentina, Chile y Uruguay

https://archive.org/stream/ClubNintendo ... 3/mode/2up

Avatar de Usuario
TheElf
Street Fighter II Player
Street Fighter II Player
Mensajes: 1772
Registrado: 31/05/10 7:03
Ubicación: España + 日本
Contactar:

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por TheElf » 14/10/15 5:43

Seguro ya lo saben, pero para algun perdido, saquen los resultados a un fichero, es mucho mejor para poder ver los warning con tranquilidad, porque se supone que no deve haber ningun warning en una compilacion correcta :roll: (aunque ahi veo la mayoria de los warning son intencionales)


En vez de

Código: Seleccionar todo

make
pongan, por ejemplo

Código: Seleccionar todo

make > out.txt
Última edición por TheElf el 14/10/15 6:54, editado 1 vez en total.
Imagen

Avatar de Usuario
Adam
Amigo de Zangief
Amigo de Zangief
Mensajes: 4483
Registrado: 14/01/12 14:20
Frase: I see dead Bumblebees.
Ubicación: Giedi Prime
Contactar:

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por Adam » 14/10/15 5:54

the98 escribió::shock: :shock:

Yay, ¿para qué copias toda la salida del proceso de compilación? No hace falta pegar eso en el foro. Hasta confunde.
Sí, no entiendo eso. Tampoco entiendo que tiene esto de especial.

Avatar de Usuario
TheElf
Street Fighter II Player
Street Fighter II Player
Mensajes: 1772
Registrado: 31/05/10 7:03
Ubicación: España + 日本
Contactar:

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por TheElf » 14/10/15 7:00

Adam escribió:
the98 escribió::shock: :shock:

Yay, ¿para qué copias toda la salida del proceso de compilación? No hace falta pegar eso en el foro. Hasta confunde.
Sí, no entiendo eso. Tampoco entiendo que tiene esto de especial.
Tal vez le costo un huevo compilarlo


No hace mucho, intente compilar el masterboy de PSP (una version nueva que no salio en binario), y nada, no habia forma, imposible...

Incluso logre contactar con el autor original, y me decia que ya no se acordaba que compiladores o librerias habia usado, intento compilarlo, y tambien fallo


Al final, ni yo, ni el autor original pudimos compilar el codigo. Nada, me toco modificar un huevo de archivos, cambiar bastante codigo, pero al final lo logre.....


Ese dia, realmente queria mostrar ese make: Nothing to be done for `MasterBoy'. a todo dios! jaja, que alegria...
Imagen

Avatar de Usuario
Adam
Amigo de Zangief
Amigo de Zangief
Mensajes: 4483
Registrado: 14/01/12 14:20
Frase: I see dead Bumblebees.
Ubicación: Giedi Prime
Contactar:

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por Adam » 14/10/15 7:05

La falta de documentación casi se cobra otra víctima. :lol:

Avatar de Usuario
TheElf
Street Fighter II Player
Street Fighter II Player
Mensajes: 1772
Registrado: 31/05/10 7:03
Ubicación: España + 日本
Contactar:

Re: Virtual Jaguar V2.12 compilado en Ubuntu 14.04

Mensaje por TheElf » 14/10/15 7:12

Adam escribió:La falta de documentación casi se cobra otra víctima. :lol:
A la falta de documentacion, ni un puto comentario en todo el codigo...jajaja

Que maestro el autor del emu, lo perdono y entiendo, porque yo ni hago documentacion, ni comentarios tampoco....

No compilo mi propio codigo tiempo despues ni de broma :P :?
Imagen

Responder