Skip to content

Commit

Permalink
Xemu: add pip
Browse files Browse the repository at this point in the history
REALLY need to rewrite this with pipx. someday.
  • Loading branch information
cobalt2727 authored Jun 28, 2024
1 parent d414c22 commit 98f79b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/games_and_emulators/xemu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ case "$__os_codename" in
bionic)
ubuntu_ppa_installer "deadsnakes/ppa" || error "PPA failed to install"
ubuntu_ppa_installer "ubuntu-toolchain-r/test" || error "PPA failed to install"
sudo apt install python3.8 gcc-11 g++-11 -y || error "Could not install dependencies!" #GCC 9 (the 20.04 default) also works, I'm just using 11 to future-proof -cobalt
sudo apt install python3.8 python3-pip gcc-11 g++-11 -y || error "Could not install dependencies!" #GCC 9 (the 20.04 default) also works, I'm just using 11 to future-proof -cobalt
sed -i -e 's/python3 /python3.8 /g' build.sh #this is hacky, yes, but hey, it works
python3.8 -m pip install --upgrade pip meson PyYAML
CFLAGS=-mcpu=native CXXFLAGS=-mcpu=native CC=gcc-11 CXX=g++-11 ./build.sh || error "Compilation failed!"
Expand Down

0 comments on commit 98f79b1

Please sign in to comment.