mirror of
https://github.com/ValveSoftware/Proton.git
synced 2024-12-27 07:05:46 +03:00
Don't build against the beta runtime
This commit is contained in:
parent
bdca0aa9c9
commit
12d0d0292b
@ -50,7 +50,7 @@ changes to the <tt>wine/</tt> directory.
|
|||||||
Easy build path
|
Easy build path
|
||||||
---
|
---
|
||||||
|
|
||||||
Building Proton is quite complicated. We now provide a top-level Makefile which
|
Building Proton is quite complicated. We provide a top-level Makefile which
|
||||||
will execute most of the build commands for you. This section describes how to
|
will execute most of the build commands for you. This section describes how to
|
||||||
use this Makefile for simple Proton builds.
|
use this Makefile for simple Proton builds.
|
||||||
|
|
||||||
@ -170,7 +170,7 @@ VM. If you are configuring manually, run these steps:
|
|||||||
|
|
||||||
mkdir proton/mybuild/
|
mkdir proton/mybuild/
|
||||||
cd proton/mybuild
|
cd proton/mybuild
|
||||||
../configure.sh --steam-runtime64=docker:steam-proton-dev-beta --steam-runtime32=docker:steam-proton-dev32-beta --steam-runtime=$HOME/steam-runtime/runtime/
|
../configure.sh --steam-runtime64=docker:steam-proton-dev --steam-runtime32=docker:steam-proton-dev32 --steam-runtime=$HOME/steam-runtime/runtime/
|
||||||
|
|
||||||
If you are building without the Steam runtime, then instead use:
|
If you are building without the Steam runtime, then instead use:
|
||||||
|
|
||||||
|
@ -2,13 +2,13 @@
|
|||||||
|
|
||||||
#set up steam runtimes. remove these lines if building without the runtime
|
#set up steam runtimes. remove these lines if building without the runtime
|
||||||
git clone https://github.com/ValveSoftware/steam-runtime.git
|
git clone https://github.com/ValveSoftware/steam-runtime.git
|
||||||
./steam-runtime/setup_docker.sh --beta amd64 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev-beta
|
./steam-runtime/setup_docker.sh amd64 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev
|
||||||
./steam-runtime/setup_docker.sh --beta i386 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev32-beta
|
./steam-runtime/setup_docker.sh i386 --extra-bootstrap=/home/vagrant/proton/steamrt-bootstrap.sh steam-proton-dev32
|
||||||
(cd steam-runtime && ./build-runtime.py --output=./runtime/)
|
(cd steam-runtime && ./build-runtime.py --output=./runtime/)
|
||||||
|
|
||||||
#configure proton build
|
#configure proton build
|
||||||
mkdir build
|
mkdir build
|
||||||
cd build
|
cd build
|
||||||
../proton/configure.sh --steam-runtime64=docker:steam-proton-dev-beta --steam-runtime32=docker:steam-proton-dev32-beta --steam-runtime="$HOME"/steam-runtime/runtime/
|
../proton/configure.sh --steam-runtime64=docker:steam-proton-dev --steam-runtime32=docker:steam-proton-dev32 --steam-runtime="$HOME"/steam-runtime/runtime/
|
||||||
#if building without the runtime, use:
|
#if building without the runtime, use:
|
||||||
#../proton/configure.sh --no-steam-runtime
|
#../proton/configure.sh --no-steam-runtime
|
||||||
|
Loading…
Reference in New Issue
Block a user