blob: d8bc24cd8fc3386135e0b61559d828d4bec3c0bf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Trying to run Windows version of Steam through wine new wow64 mode
```
export BOX64_LD_LIBRARY_PATH=./:lib/:lib64/:x86_64/:bin64/:libs64/:/x86_64/usr/lib64/
export BOX64_PATH=./:bin/:/x86_64/usr/bin/
export BOX64_BASH=/x86_64/usr/bin/bash
export BOX64_LOG=1
export BOX64_ROLLING_LOG=1
export BOX64_DLSYM_ERROR=1
export BOX64_SHOWSEGV=1
export BOX64_SHOWBT=1
export BOX64_DYNAREC_LOG=1
export BOX64_DYNAREC_STRONGMEM=1
box64 wine64 "C:\Program Files (x86)\Steam\Steam.exe"
```
Log: https://gist.github.com/teohhanhui/d39f0660e45d5dfe83a70454f996f838
---
All the steps are documented here: https://gist.github.com/teohhanhui/042a395010d9946ceee14768736e3780
Specifically the relevant parts are:
1. from the beginning up to and including https://gist.github.com/teohhanhui/042a395010d9946ceee14768736e3780#install-krun-and-dependencies-inside-the-container
2. and then everything under https://gist.github.com/teohhanhui/042a395010d9946ceee14768736e3780#optional-box64
|