diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2021-07-02 16:05:41 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2021-07-02 16:05:41 +0200 |
| commit | aa56188e7e3e3dc9bede3267a1621f785ddb7b7a (patch) | |
| tree | b8a886dacc1063f780876933e468cbfa74ef97d5 | |
| parent | 1d92e65fcc15b2a3b4814ea542e396db683e3748 (diff) | |
| download | box64-aa56188e7e3e3dc9bede3267a1621f785ddb7b7a.tar.gz box64-aa56188e7e3e3dc9bede3267a1621f785ddb7b7a.zip | |
Set default to NOLOADADDR, as many system doesn't like it
| -rwxr-xr-x | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index ceb21e68..d1ad8377 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ option(RK3326 "Set to ON if targeting an Rockchip RK3326 based device" ${RK3326} option(RK3399 "Set to ON if targeting an Rockchip RK3399 based device" ${RK3399}) option(USE_CCACHE "Set to ON to use ccache if present in the system" ${USE_CCACHE}) option(HAVE_TRACE "Set to ON to have Trace ability (needs ZydisInfo library)" ${HAVE_TRACE}) -option(NOLOADADDR "Set to ON to avoid fixing the load address of Box64" ${NO_LOADAADR}) +option(NOLOADADDR "Set to ON to avoid fixing the load address of Box64" ON) option(NOGIT "Set to ON if not building from a git clone repo (like when building from a zip download from github)" ${NOGIT}) if(RK3399 OR RPI4ARM64 OR RK3326) set(LD80BITS OFF CACHE BOOL "") |