OpenRadioss 2025.1.11
OpenRadioss project
Loading...
Searching...
No Matches
abfname.inc
Go to the documentation of this file.
1/* include C pour donner un nom abf specifique a chaque platteforme */
2
3#if CPP_mach==CPP_macosx64
4char * ABFPLATTTF = "macosx64";
5
6#elif CPP_mach==CPP_p4linux964
7#ifdef __aarch64__
8char * ABFPLATTTF = "linuxa64";
9#elif 1
10char * ABFPLATTTF = "linux64";
11#endif
12#elif CPP_mach==CPP_p4linux932
13char * ABFPLATTTF = "linux32";
14
15#elif CPP_mach==CPP_p4win32
16char * ABFPLATTTF = "win32.exe";
17
18#elif CPP_mach==CPP_p4win64
19char * ABFPLATTTF = "win64.exe";
20
21#elif 1
22char * ABFPLATTTF = "linux";
23#endif
24