diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-09-15 14:07:46 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-09-15 14:07:46 +0200 |
| commit | 21c56e78988e424ef027985312b4e376a84c15f9 (patch) | |
| tree | fb7e9d8ab5f0ea72b705ccd8e2d15238da070558 /src/include | |
| parent | 7c74e7be35d9f235b4c308aac2ab8c32bdd40f90 (diff) | |
| download | box64-21c56e78988e424ef027985312b4e376a84c15f9.tar.gz box64-21c56e78988e424ef027985312b4e376a84c15f9.zip | |
Improved usage of x86_64 bash with BOX64_BASH env var
Diffstat (limited to 'src/include')
| -rwxr-xr-x | src/include/box64context.h | 1 | ||||
| -rwxr-xr-x | src/include/debug.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/src/include/box64context.h b/src/include/box64context.h index 79560227..5dc2399d 100755 --- a/src/include/box64context.h +++ b/src/include/box64context.h @@ -89,6 +89,7 @@ typedef struct box64context_s { char* fullpath; char* box64path; // path of current box64 executable char* box86path; // path of box86 executable (if present) + char* bashpath; // path of x86_64 bash (defined with BOX64_BASH or by running bash directly) uint64_t stacksz; size_t stackalign; diff --git a/src/include/debug.h b/src/include/debug.h index 057d7898..5f228f58 100755 --- a/src/include/debug.h +++ b/src/include/debug.h @@ -41,7 +41,6 @@ extern int box64_prefer_wrapped; extern int box64_prefer_emulated; extern int box64_steam; extern int box64_wine; -extern int box64_bash; extern int box64_musl; extern int box64_nopulse; // disabling the use of wrapped pulseaudio extern int box64_nogtk; // disabling the use of wrapped gtk |