kjliew / qemu-3dfx

MESA GL/3Dfx Glide pass-through for QEMU

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Guest Wrapper build error in WSL2

l-zhang-1983 opened this issue · comments

image

@kjliew Thank you for your rapid reply and modification of the code for Guest Wrapper syntax error.

However, after pulling the new code, another error occurred as shown above.

My specs: Windows 11 Pro 23H2, WSL2 - Ubuntu 22.04.3 LTS

QEMU-7.2.6

That's the problem with Ubuntu/Debian or any Linux distros that symlink /bin/sh to dash. You can either:

  1. Restore symlink /bin/sh to bash.
  2. Force bash for makefile $ make SHELL=/bin/bash

image

Works like a charm! THANK YOU @kjliew