-
-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Box64 Cross-compiling: Can I specify where the library files are going? #1993
Comments
that's probably issues with the cmake project. I need to check that out. |
If it helps, I think CMake gives a hint that when I specify other GNUInstallDir parameters (ie |
the install paths for some files are currently hardcoded Lines 1156 to 1161 in 2d04cbe
|
it actually shouldn't be possible to install ( Line 1141 in 2d04cbe
sed -i "s/NOT _x86 AND NOT _x86_64/true/g" ../CMakeLists.txt
|
I'm trying to do some cross-compiles on my devices to target specific ARM64 devices, and I'm having difficulty getting the libraries that Box64 compiles to go into a specific folder. The following is my command line (note the slashes are just to escape the newline):
I'll break it down step by step:
/workdir/box64-rpi
.However, with this I find that the box64 binary is copied into
/workdir/box64-rpi/bin
but other stuff gets placed in/etc
and/usr/lib
. I want it to be placed in/workdir/box64-rpi/etc
and/workdir/box64-rpi/usr/lib
.What am I doing wrong?
The text was updated successfully, but these errors were encountered: