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:
authorPatryk Obara <dreamer.tan@gmail.com>2021-02-18 16:23:52 +0300
committerPatryk Obara <patryk.obara@gmail.com>2021-02-19 21:36:58 +0300
commitd46d6f425a4d1ba8c173b0e7e13529fb72c1feab (patch)
tree942b671c2251cc65db9ec0cdd5c28d7e5437d186 /BUILD.md
parent1965ada7b3de2b2440387ee5a4b0dc8c47acbe89 (diff)
Move Haiku-specific instructions to separate file
Diffstat (limited to 'BUILD.md')
-rw-r--r--BUILD.md47
1 files changed, 0 insertions, 47 deletions
diff --git a/BUILD.md b/BUILD.md
index 440b2322d..1e8bc0848 100644
--- a/BUILD.md
+++ b/BUILD.md
@@ -18,9 +18,6 @@ notes below.
- [Linux Procedures](#linux-procedures)
- [Install Dependencies under Linux](#install-dependencies-under-linux)
- [Build a Linux Binary](#build-a-linux-binary)
- - [Haiku Procedures](#haiku-procedures)
- - [Install Dependencies under Haiku](#install-dependencies-under-haiku)
- - [Build a Haiku Binary](#build-a-haiku-binary)
- [Additional Tips](#additional-tips)
- [Compiler variations](#compiler-variations)
- [Build Results, Rebuilding, and Cleaning](#build-results-rebuilding-and-cleaning)
@@ -110,50 +107,6 @@ notes below.
1. To build a debug binary, use `-t debug` in place of `-t release -m lto`.
-## Haiku Procedures
-
-### Install Dependencies under Haiku
-
-1. Clone the repository: `git clone
- https://github.com/dosbox-staging/dosbox-staging.git`
-1. Change directories into the repo: `cd dosbox-staging`
-1. (🏁 first-time-only) Install dependencies:
-
- `pkgman install -y $(./scripts/list-build-dependencies.sh -m haikuports -c
- clang -v 9)`
-
-### Build a Haiku Binary
-
-1. Build an optimized binary using various compilers:
-
-- Clang: `./scripts/build.sh --compiler clang -t release -m lto
- --prefix=$HOME/config/non-packaged`
-- GCC: `./scripts/build.sh -c gcc -t release --prefix=$HOME/config/non-packaged`
-
-1. To build a debug binary, use `-t debug` in place of `-t release`.
-1. Install the binary: `make install`
-1. Edit your configuration file by running: `dosbox -editconf` and make the
- following suggested changes (leave all other settings as-is):
-
- ``` ini
- [sdl]
- windowresolution = 800x600
- output = texturenb
- texture_renderer = software
-
- [renderer]
- scaler = none
- glshader = none
-
- [cpu]
- core = normal
- ```
-
- The state of Haiku's GPU Hardware-acceleration is being discussed here:
- https://discuss.haiku-os.org/t/state-of-accelerated-opengl/4163
-
-1. You may now run `dosbox` inside any directory in your Terminal.
-
## Additional Tips
### Compiler variations