1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00

0031994: Draw Harness - dversion prints "Architecture: unrecognized" on ARM host

Added handling of __aarch64__ macros.
This commit is contained in:
kgv 2020-12-13 22:56:45 +03:00 committed by bugmaster
parent 6169ae2d3d
commit fccc168a6f

View File

@ -428,6 +428,14 @@ static Standard_Integer dversion(Draw_Interpretor& di, Standard_Integer, const c
di << "Architecture: Intel Itanium (IA 64)\n";
#elif defined(__sparc__) || defined(__sparc)
di << "Architecture: SPARC\n";
#elif defined(__aarch64__) && defined(__LP64__)
di << "Architecture: ARM 64-bit\n";
#elif defined(__arm__) || defined(__arm64__)
#if defined(__LP64__)
di << "Architecture: ARM 64-bit\n";
#else
di << "Architecture: ARM 32-bit\n";
#endif
#else
di << "Architecture: unrecognized\n";
#endif