Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dosbox-staging/dosbox-staging.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkcgen <kcgen@users.noreply.github.com>2022-08-05 00:01:46 +0300
committerkcgen <1557255+kcgen@users.noreply.github.com>2022-08-06 05:07:51 +0300
commit687301bb0a6c794afd3509afbefdca183630ea61 (patch)
tree09dca0a11ba78d1f8398b2ee57097b4ff134a8b1 /README.md
parentc9c589679c38c00b904ec317a2fafb600c1cb244 (diff)
Prioritize release builds using wraps
The majority of people building Staging want release builds without complications due to system libraries. This includes users on windows using MSYS2, Raspberry Pi users (via RetroPie), macOS users, and Linux users with OSes that might be very new or slightly out-of-date. Packagers can configure meson to use shared libraries and not fallback to wraps, and additionally ask to have specific libraries provided from the system using -Duse_system_libs=lib1,lib2, instead of wraps.
Diffstat (limited to 'README.md')
-rw-r--r--README.md14
1 files changed, 5 insertions, 9 deletions
diff --git a/README.md b/README.md
index 40e78ce99..b5c9a8c4e 100644
--- a/README.md
+++ b/README.md
@@ -208,14 +208,7 @@ brew install ccache meson libpng sdl2 sdl2_net opusfile fluid-synth libslirp spe
cleaning your working directories:
``` shell
- meson setup \
- -Dbuildtype=release \
- -Ddefault_library=static \
- -Db_asneeded=true \
- -Dtry_static_libs=png \
- -Dfluidsynth:enable-floats=true \
- -Dfluidsynth:try-static-deps=true \
- build
+ meson setup build
```
The above enables all of DOSBox Staging's functional features. If you're
@@ -228,8 +221,11 @@ brew install ccache meson libpng sdl2 sdl2_net opusfile fluid-synth libslirp spe
meson compile -C build
```
- Your binary is: `build/dosbox` -- have fun!
+ Your binary is: `build/dosbox`
+ The binary depends on local resources relative to it, so we suggest
+ symlinking to the binary from your PATH, such as into ~/.local/bin/
+ -- Have fun!
### Windows - Visual Studio (2019 or newer)