mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- Enabled Gnu CC ARM architecture check for Drawergen.
This commit is contained in:
parent
3b7bc2d1e5
commit
407204ee2c
1 changed files with 4 additions and 0 deletions
|
@ -88,7 +88,11 @@ int main(int argc, char **argv)
|
|||
|
||||
std::cout << "Target triple is " << triple << std::endl;
|
||||
|
||||
#ifdef __arm__
|
||||
std::string cpuName = "armv8";
|
||||
#else
|
||||
std::string cpuName = "pentium4";
|
||||
#endif
|
||||
std::string features;
|
||||
std::cout << "Compiling drawer code for " << cpuName << ".." << std::endl;
|
||||
|
||||
|
|
Loading…
Reference in a new issue