diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-01-31 16:04:32 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-01-31 16:04:49 +0100 |
| commit | 5d8b70cc0da48f65eaecab9f90fc9ef0f5fd5651 (patch) | |
| tree | ecdd28b3f7319ad7de1fa7093ceef63d0940175a /src/main.c | |
| parent | d60ba04cf4d770288703649c761f17cf170f9cfc (diff) | |
| download | box64-5d8b70cc0da48f65eaecab9f90fc9ef0f5fd5651.tar.gz box64-5d8b70cc0da48f65eaecab9f90fc9ef0f5fd5651.zip | |
Made PageSize detection / Handling dynamic. nd fixed elfloading for pagesize not 4K. The define are still there but might be removed shortly (for #1231, #1226, #1189, #1175, #999, #384 and probably a few other)
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/main.c b/src/main.c index 62840630..62919466 100644 --- a/src/main.c +++ b/src/main.c @@ -439,10 +439,8 @@ HWCAP2_ECV printf_log(LOG_INFO, " FRINT"); if(arm64_afp) printf_log(LOG_INFO, " AFP"); - printf_log(LOG_INFO, " PageSize:%zd ", box64_pagesize); #elif defined(LA464) printf_log(LOG_INFO, "Dynarec for LoongArch"); - printf_log(LOG_INFO, " PageSize:%zd ", box64_pagesize); #elif defined(RV64) void RV64_Detect_Function(); if(!getenv("BOX64_DYNAREC_RV64NOEXT")) @@ -462,8 +460,6 @@ HWCAP2_ECV if(rv64_xtheadfmemidx) printf_log(LOG_INFO, " XTheadFMemIdx"); if(rv64_xtheadmac) printf_log(LOG_INFO, " XTheadMac"); if(rv64_xtheadfmv) printf_log(LOG_INFO, " XTheadFmv"); - - printf_log(LOG_INFO, " PageSize:%zd ", box64_pagesize); #else #error Unsupported architecture #endif @@ -998,7 +994,7 @@ void LoadLogEnv() #endif int ncpu = getNCpu(); const char* cpuname = getCpuName(); - printf_log(LOG_INFO, "Running on %s with %d Cores\n", cpuname, ncpu); + printf_log(LOG_INFO, " PageSize:%zd Running on %s with %d Cores\n", box64_pagesize, cpuname, ncpu); } EXPORTDYN |