Games compilation howto on the Pinebook-pro (Manjaro Linux and Debian native)
I posted this on Twitter earlier:

[Image: EXax48-PX0-AAGMl-I.png]

The past weekend we got a fully working PC port of Super Mario 64. This port can either use DirectX 12 or OpenGL, and the OpenGL one runs on Linux just fine. So I got curious and wondered if it would work on the PBP. Turns out it works just fine. My OS of choice is Manjaro, so that's what I'll be using here.

Now, I'm not going to tell you how to get the ROM file that contains the assets needed for this to work. I'm also not going to openly share the code archive, because even though it's completely fine legally, the original author seems to want to keep things underground. I also don't want to cause any issues for Pine64 by listing it here. The one I have is the sm64pc-sdl.7z archive, with md5sum f47a09dc59120d4f422cdabecf2be494. It shouldn't come with any precompiled binaries. I've seen some archives online which do. I'll also be using the US version of the game.

Getting it running was surprisingly not too bad, but did have one issue which I'll mention later. First, to make sure we have what we need to get started:

Code:
sudo pacman -S base-devel python audiofile glfw-x11

Another thing to make sure of is that we have the rom in the right place, and named correctly. It should be in the main folder, in the same level as the main makefile. The rom must also be renamed baserom.$VERSION.z64. Where $VERSION is the region of the rom (eu, us, or jp). So in my case, I have a baserom.us.z64 file.

Next, it's worth noting that the archive already comes with a number of useful tools which it will use during compilation. However, these tools all come precompiled for x86-64, and our first step will be to correct this. So, from the root of the archive:


Code:
cd tools
make clean
make
cd ..



The next step is to modify the makefile. The general idea here is to remove all the -m32 and -march=i686 compiler flags. Particular ones of interest in the version that I have occur on lines 195, 365, and 406:

Code:
else
 OPT_FLAGS := -g -m32
endif



Code:
ifeq ($(shell getconf LONG_BIT), 32)
 # Work around memory allocation bug in QEMU
 export QEMU_GUEST_BASE := 1
else
 # Ensure that gcc treats the code as 32-bit
 CC_CHECK += -m32
endif



Code:
ifeq ($(WINDOWS_BUILD),1)
LDFLAGS := -m32 -march=i686 -Llib -lpthread -lglew32 `sdl2-config --static-libs` -lm -lglu32 -lsetupapi -ldinput8 -luser32 -lgdi32 -limm32 -lole32 -loleaut32 -lshell32 -lwinmm -lversion -luuid -lopengl32 -no-pie -static
else
LDFLAGS := -m32 -march=i686 -lm -lGL `sdl2-config --libs` -no-pie -lpthread `pkg-config --libs libusb-1.0 glfw3` -lasound -lX11 -lXrandr -lpulse
endif

Remove all mentions of -m32 and -march=i686 from here and it should be ready to go. In OPT_FLAGS, it's also possible to remove the debug flag -g, and add the -O2 optimisation flag for better performance .

Once all these flags are removed, we can try to make it with "make -j6". However, in my experience, this fails when compiling on the PBP with a number of sound_player errors. To fix this, the best way I have found is to follow the Linux compilation instructions while using an x86_64 machine, and then to copy the build/sound directory and transfer it over into the build directory on the PBP.

From there, we can try make -j6 again, and it should complete building.

It would be interesting to see if that one issue could be fixed, but I see no issues doing it this way at all!

The game runs well, but there is some stutter especially as you increase the resolution. At default res however, it runs fantastic in my opinion.
  Reply


Messages In This Thread
RE: Games compilation howto on the Pinebook-pro (Manjaro Linux and Debian native) - by Nappael - 05-07-2020, 01:00 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Pinebook pro bricked? michaelmoua 2 267 03-12-2025, 11:09 AM
Last Post: tophneal
  Use SD to install new OS over pinebook debian Rudy558 10 13,834 03-09-2025, 11:17 AM
Last Post: davisthomas
  Problem: Wi-Fi Connectivity Issues on Pinebook Pro markwood00 1 517 02-05-2025, 03:56 AM
Last Post: waylonwesley
  Pinebook Pro in EU for Sale - €90 jan_vdk 3 2,081 01-29-2025, 06:50 AM
Last Post: Macrae245
  Pinebook Next !spekulation! Surehand53 2 677 01-23-2025, 11:49 AM
Last Post: Surehand53
  Pinebook Pro wants a PIN for my bluetooth mouse ColoBill 1 302 01-19-2025, 04:38 PM
Last Post: ColoBill
Tongue Yet another Pinebook Pro won't boot thread pinemouth 5 4,161 12-27-2024, 11:38 AM
Last Post: akash3995
Question Pinebook pro dead / keyboard issue? / Troubleshooting Mengalef 2 689 12-05-2024, 04:16 PM
Last Post: tllim
  Testing Some More Games on the Pinebook Pro! ImmyChan 4 4,613 09-05-2024, 09:40 PM
Last Post: WilliamThompson
  Converting the Pinebook Pro into a CrowView Note like device 8jef 0 578 08-18-2024, 05:42 PM
Last Post: 8jef

Forum Jump:


Users browsing this thread: 45 Guest(s)