Zsnes (compilación para 64bit): Difference between revisions

From HSS
(version 1)
 
mNo edit summary
Line 9: Line 9:
=== cat README.LINUX ===
=== cat README.LINUX ===
* advierte que hay que tener instalado SDL 1.2.0
* advierte que hay que tener instalado SDL 1.2.0
** apt install libsdl2-dev
** apt install libsdl1.2-dev
*** requiere instalar: gir1.2-ibus-1.0 libasound2-dev libblkid-dev libdbus-1-dev libdecor-0-dev libdrm-dev libegl-dev libegl-mesa0 libegl1 libgbm-dev libgl-dev libgles-dev libgles1 libgles2 libglib2.0-dev libglib2.0-dev-bin libglx-dev libibus-1.0-5 libibus-1.0-dev libice-dev libmount-dev libpciaccess-dev libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpkgconf3 libpthread-stubs0-dev libpulse-dev libpulse-mainloop-glib0 libsamplerate0-dev libselinux1-dev libsepol-dev libsm-dev libsndio-dev libudev-dev libwayland-bin libwayland-dev libx11-dev libxau-dev libxcb1-dev libxcursor-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbcommon-dev libxrandr-dev libxrender-dev libxss-dev libxt-dev libxv-dev libxxf86vm-dev pkg-config pkgconf pkgconf-bin uuid-dev x11proto-dev xorg-sgml-doctools xtrans-dev
*** requiere instalar: libasound2-dev libblkid-dev libcaca-dev libgl-dev libglib2.0-dev libglib2.0-dev-bin libglu1-mesa libglu1-mesa-dev libglx-dev libmount-dev libopengl-dev libopengl0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpkgconf3 libpng-dev libpng-tools libpthread-stubs0-dev libpulse-dev libpulse-mainloop-glib0 libselinux1-dev libsepol-dev libslang2-dev libx11-dev libxau-dev libxcb1-dev libxdmcp-dev libxext-dev pkg-config pkgconf pkgconf-bin uuid-dev x11proto-dev xorg-sgml-doctools xtrans-dev


== cat install.txt ==
=== cat install.txt ===
* hay que tener instalados: sdl, nasm, zlib, libpng, Curses/NCurses
tl;dr hay que tener instalados: sdl, nasm, zlib, libpng, Curses/NCurses

** SDL (Simple DirectMedia Layer) : check www.libsdl.org to grab SDL 1.2.0 or later. If you are using rpm packages, don't forget the -devel package.
<code>SDL (Simple DirectMedia Layer) : check www.libsdl.org to grab SDL 1.2.0 or later. If you are using rpm packages, don't forget the -devel package.</code> instalado recién
*** instalado recién

** NASM v0.98.39 : http://nasm.sf.net/
*** ~apt install nasm~ la versión actual es la 1.16.
<code>NASM v0.98.39 : http://nasm.sf.net/</code>. <code>apt install nasm</code> la versión actual es la 1.16.

** zlib v1.2.3 or higher : http://www.zlib.net it is probably already installed on your system, maybe you are just missing the development headers. Check in the packages available with your distributionor go to the page above
<code> zlib v1.2.3 or higher : http://www.zlib.net it is probably already installed on your system, maybe you are just missing the development headers. Check in the packages available with your distributionor go to the page above</code>
*** ~apt install zlib1g-dev~ ya estaba instalado, v. 1.2.13
<code> apt install zlib1g-dev</code> ya estaba instalado, v. 1.2.13
** libpng : http://www.libpng.org/ You might also need libpng, ZSNES will compile without PNG support but I have found doing so to make ZSNES unstable for some weird reason. If you don't have libpng, either get it and install it or pass the --without-png option to the 'configure' script.

*** no lo instalaré porque la idea es que use el SDL, no weis png.
<code>libpng : http://www.libpng.org/ You might also need libpng, ZSNES will compile without PNG support but I have found doing so to make ZSNES unstable for some weird reason. If you don't have libpng, either get it and install it or pass the --without-png option to the 'configure' script.</code> no lo instalaré porque la idea es que use el SDL, no weis png.
** Curses/NCurses Check your distro. One of these is needed if you compile with the debugger enabled. You may also have to symlink ncurses.h to curses.h in your include directory.

*** no voy a compilar con debug, así que no lo instalaré
<code>Curses/NCurses Check your distro. One of these is needed if you compile with the debugger enabled. You may also have to symlink ncurses.h to curses.h in your include directory.</code>. <code>apt install lib32ncurses-dev</code>. Requiere instalar gcc-12-multilib gcc-multilib lib32asan8 lib32atomic1 lib32gcc-12-dev lib32gcc-s1 lib32gomp1 lib32itm1 lib32ncurses6 lib32ncursesw6 lib32quadmath0 lib32stdc++6 lib32tinfo6 lib32ubsan1 libc6-dev-i386 libc6-dev-x32 libc6-i386 libc6-x32 libncurses-dev libx32asan8 libx32atomic1 libx32gcc-12-dev libx32gcc-s1 libx32gomp1 libx32itm1 libx32quadmath0 libx32stdc++6 libx32ubsan1


== cd ../src ==
== cd ../src ==
=== sh ./autogen.sh && gmake && gmake install ===
./autogen.sh && gmake && gmake install

=== ./autogen.sh ===
Todo dice que está ok. Dejo ultima parte del stdout.
<pre># ./autogen.sh

[...]

ZSNES v1.51

SDL support Version 1.2.15
NASM support NASM version 2.16.01
zlib support Version 1.2.13
PNG support Yes, version 1.6.39
OpenGL support Yes
JMA support Yes
ZSNES debugger Enabled

The binary will be installed in /usr/local/bin

Configure complete, now type 'make' and pray.</pre>

=== gmake ===

* PRIMER INTENTO
<pre> # gmake
g++ -pipe -I. -I/usr/local/include -I/usr/include -D__UNIXSDL__ -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -D__OPENGL__ -march=native -O3 -fomit-frame-pointer -s -fno-rtti -o tools/fileutil.o -c tools/fileutil.cpp
g++ -pipe -I. -I/usr/local/include -I/usr/include -D__UNIXSDL__ -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -D__OPENGL__ -march=native -O3 -fomit-frame-pointer -s -fno-rtti -o tools/strutil.o -c tools/strutil.cpp
In file included from tools/strutil.cpp:22:
tools/strutil.h: In static member function ‘static int ci_char_traits::compare(const char*, const char*, size_t)’:
tools/strutil.h:34:73: error: ‘strncasecmp’ was not declared in this scope; did you mean ‘wcsncasecmp’?
34 | static int compare(const char* s1, const char* s2, size_t n) { return strncasecmp( s1, s2, n ); }
| ^~~~~~~~~~~
| wcsncasecmp
gmake: *** [Makefile:96: tools/strutil.o] Error 1
</pre>

Seguiremos el consejo y editaré el archivo tools/strutil.h

* Segundo intento
Aquí creo que se empieza a ir a la cresta...

<pre> # gmake
g++ -pipe -I. -I/usr/local/include -I/usr/include -D__UNIXSDL__ -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT -D__OPENGL__ -march=native -O3 -fomit-frame-pointer -s -fno-rtti -o tools/strutil.o -c tools/strutil.cpp
In file included from tools/strutil.cpp:22:
tools/strutil.h: In static member function ‘static int ci_char_traits::compare(const char*, const char*, size_t)’:
tools/strutil.h:36:88: error: cannot convert ‘const char*’ to ‘const wchar_t*’
36 | ic int compare(const char* s1, const char* s2, size_t n) { return wcsncasecmp( s1, s2, n ); }
| ^~
| |
| const char*

In file included from /usr/include/c++/12/cwchar:44,
from /usr/include/c++/12/bits/postypes.h:40,
from /usr/include/c++/12/bits/char_traits.h:39,
from /usr/include/c++/12/string:40,
from tools/strutil.h:25:
/usr/include/wchar.h:117:40: note: initializing argument 1 of ‘int wcsncasecmp(const wchar_t*, const wchar_t*, size_t)’
117 | extern int wcsncasecmp (const wchar_t *__s1, const wchar_t *__s2,
| ~~~~~~~~~~~~~~~^~~~
gmake: *** [Makefile:96: tools/strutil.o] Error 1
</pre>

...así que restauré el archivo que edité y busqué si había info en internet sobre el primer error y llegué a [https://www.linuxquestions.org/questions/linux-games-33/problems-while-compiling-zsnes-908782/#post4725859 este post] en un hilo en que se hablaba de compilar zsnes. Transcribo las indicaciones que deja y que seguiré a continuación:

<pre>
The latest version are still not compiling so here is the patch! To build zsnes-1.51 do the following:

First open zsnes-1.51/parsegen.cpp

First add #include <cstring>

#include <fstream>
#include <string>
+#include <cstring>
#include <vector>
#include <algorithm>

then find and change one line ...

}
}

-int main(size_t argc, const char *const *const argv)
+int main(int argc, const char *const *const argv)
{
const char *cheader_file = 0;
___________________________________________________

Then Open file zsnes-1.51/tools/depbuild.cpp

First add #include <cstdlib> and #include <unistd.h>

#include <string>
#include <cstdio>
+#include <cstdlib>
+#include <unistd.h>
using namespace std;

#include "fileutil.h"

then find and change one line ...

}

-int main(size_t argc, const char *const *const argv)
+int main(int argc, const char *const *const argv)
{
if (argc < 5)
__________________________________________________

Then open zsnes-1.51/tools/strutil.h


First add #include <cstring>
** PRIMER INTENTO


#include <string>
+#include <cstring>
#include <vector>


</pre>





Revision as of 03:11, 23 February 2024

idea

que en el server anfibio esté instalado zsnes para que el que quiera jugar un rato pueda. para que el servidor no tenga archivos que puedan estar sujetos a algún problema legal del mundo cretino, sugiero la idea de portar juegos en pendrives ;-)

descargar zsnes

cd docs/

cat README.LINUX

  • advierte que hay que tener instalado SDL 1.2.0
    • apt install libsdl1.2-dev
      • requiere instalar: libasound2-dev libblkid-dev libcaca-dev libgl-dev libglib2.0-dev libglib2.0-dev-bin libglu1-mesa libglu1-mesa-dev libglx-dev libmount-dev libopengl-dev libopengl0 libpcre2-32-0 libpcre2-dev libpcre2-posix3 libpkgconf3 libpng-dev libpng-tools libpthread-stubs0-dev libpulse-dev libpulse-mainloop-glib0 libselinux1-dev libsepol-dev libslang2-dev libx11-dev libxau-dev libxcb1-dev libxdmcp-dev libxext-dev pkg-config pkgconf pkgconf-bin uuid-dev x11proto-dev xorg-sgml-doctools xtrans-dev

cat install.txt

tl;dr hay que tener instalados: sdl, nasm, zlib, libpng, Curses/NCurses

SDL (Simple DirectMedia Layer) : check www.libsdl.org to grab SDL 1.2.0 or later. If you are using rpm packages, don't forget the -devel package. instalado recién

NASM v0.98.39 : http://nasm.sf.net/. apt install nasm la versión actual es la 1.16.

zlib v1.2.3 or higher : http://www.zlib.net it is probably already installed on your system, maybe you are just missing the development headers. Check in the packages available with your distributionor go to the page above apt install zlib1g-dev ya estaba instalado, v. 1.2.13

libpng : http://www.libpng.org/ You might also need libpng, ZSNES will compile without PNG support but I have found doing so to make ZSNES unstable for some weird reason. If you don't have libpng, either get it and install it or pass the --without-png option to the 'configure' script. no lo instalaré porque la idea es que use el SDL, no weis png.

Curses/NCurses Check your distro. One of these is needed if you compile with the debugger enabled. You may also have to symlink ncurses.h to curses.h in your include directory.. apt install lib32ncurses-dev. Requiere instalar gcc-12-multilib gcc-multilib lib32asan8 lib32atomic1 lib32gcc-12-dev lib32gcc-s1 lib32gomp1 lib32itm1 lib32ncurses6 lib32ncursesw6 lib32quadmath0 lib32stdc++6 lib32tinfo6 lib32ubsan1 libc6-dev-i386 libc6-dev-x32 libc6-i386 libc6-x32 libncurses-dev libx32asan8 libx32atomic1 libx32gcc-12-dev libx32gcc-s1 libx32gomp1 libx32itm1 libx32quadmath0 libx32stdc++6 libx32ubsan1

cd ../src

./autogen.sh && gmake && gmake install

./autogen.sh

Todo dice que está ok. Dejo ultima parte del stdout.

# ./autogen.sh

[...]

ZSNES v1.51

SDL support                   Version 1.2.15
NASM support                  NASM version 2.16.01
zlib support                  Version 1.2.13
PNG support                   Yes, version 1.6.39
OpenGL support                Yes
JMA support                   Yes
ZSNES debugger                Enabled

The binary will be installed in /usr/local/bin

Configure complete, now type 'make' and pray.

gmake

  • PRIMER INTENTO
 # gmake
g++  -pipe -I. -I/usr/local/include -I/usr/include -D__UNIXSDL__  -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT  -D__OPENGL__ -march=native -O3 -fomit-frame-pointer -s -fno-rtti -o tools/fileutil.o -c tools/fileutil.cpp
g++  -pipe -I. -I/usr/local/include -I/usr/include -D__UNIXSDL__  -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT  -D__OPENGL__ -march=native -O3 -fomit-frame-pointer -s -fno-rtti -o tools/strutil.o -c tools/strutil.cpp
In file included from tools/strutil.cpp:22:
tools/strutil.h: In static member function ‘static int ci_char_traits::compare(const char*, const char*, size_t)’:
tools/strutil.h:34:73: error: ‘strncasecmp’ was not declared in this scope; did you mean ‘wcsncasecmp’?
   34 |   static int compare(const char* s1, const char* s2, size_t n) { return strncasecmp( s1, s2, n ); }
      |                                                                         ^~~~~~~~~~~
      |                                                                         wcsncasecmp
gmake: *** [Makefile:96: tools/strutil.o] Error 1

Seguiremos el consejo y editaré el archivo tools/strutil.h

  • Segundo intento

Aquí creo que se empieza a ir a la cresta...

 # gmake
g++  -pipe -I. -I/usr/local/include -I/usr/include -D__UNIXSDL__  -I/usr/include/SDL -D_GNU_SOURCE=1 -D_REENTRANT  -D__OPENGL__ -march=native -O3 -fomit-frame-pointer -s -fno-rtti -o tools/strutil.o -c tools/strutil.cpp
In file included from tools/strutil.cpp:22:
tools/strutil.h: In static member function ‘static int ci_char_traits::compare(const char*, const char*, size_t)’:
tools/strutil.h:36:88: error: cannot convert ‘const char*’ to ‘const wchar_t*’
   36 | ic int compare(const char* s1, const char* s2, size_t n) { return wcsncasecmp( s1, s2, n ); }
      |                                                                                ^~
      |                                                                                |
      |                                                                                const char*

In file included from /usr/include/c++/12/cwchar:44,
                 from /usr/include/c++/12/bits/postypes.h:40,
                 from /usr/include/c++/12/bits/char_traits.h:39,
                 from /usr/include/c++/12/string:40,
                 from tools/strutil.h:25:
/usr/include/wchar.h:117:40: note:   initializing argument 1 of ‘int wcsncasecmp(const wchar_t*, const wchar_t*, size_t)’
  117 | extern int wcsncasecmp (const wchar_t *__s1, const wchar_t *__s2,
      |                         ~~~~~~~~~~~~~~~^~~~
gmake: *** [Makefile:96: tools/strutil.o] Error 1

...así que restauré el archivo que edité y busqué si había info en internet sobre el primer error y llegué a este post en un hilo en que se hablaba de compilar zsnes. Transcribo las indicaciones que deja y que seguiré a continuación:

The latest version are still not compiling so here is the patch! To build zsnes-1.51 do the following:

First open zsnes-1.51/parsegen.cpp

First add #include <cstring>

#include <fstream>
#include <string>
+#include <cstring>
#include <vector>
#include <algorithm>

then find and change one line ...

}
}

-int main(size_t argc, const char *const *const argv)
+int main(int argc, const char *const *const argv)
{
const char *cheader_file = 0;
___________________________________________________

Then Open file zsnes-1.51/tools/depbuild.cpp

First add #include <cstdlib> and #include <unistd.h>

#include <string>
#include <cstdio>
+#include <cstdlib>
+#include <unistd.h>
using namespace std;

#include "fileutil.h"

then find and change one line ...

}

-int main(size_t argc, const char *const *const argv)
+int main(int argc, const char *const *const argv)
{
if (argc < 5)
__________________________________________________

Then open zsnes-1.51/tools/strutil.h

First add #include <cstring>

#include <string>
+#include <cstring>
#include <vector>


  • ~./configure --enable-release --without-png~

==