Skip to content

Commit

Permalink
fix the configure command for apple silicon macs
Browse files Browse the repository at this point in the history
  • Loading branch information
breakgimme committed Nov 8, 2023
1 parent 472781b commit 93121ee
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions RUNNING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ Compile QEMU by running the following commands from the root directory:
```
mkdir build
cd build
# On Intel Macs
../configure --enable-sdl --disable-cocoa --target-list=arm-softmmu --disable-capstone --disable-pie --disable-slirp --extra-cflags=-I/usr/local/opt/openssl@3/include --extra-ldflags='-L/usr/local/opt/openssl@3/lib -lcrypto'
# On Apple Silicon Macs
../configure --enable-sdl --disable-cocoa --target-list=arm-softmmu --disable-capstone --disable-pie --disable-slirp --extra-cflags=-I/opt/homebrew/opt/openssl@3/include --extra-ldflags='-L/opt/homebrew/opt/openssl@3/lib -lcrypto'
make
```

Expand Down

0 comments on commit 93121ee

Please sign in to comment.