- Enabled Gnu CC ARM architecture check for Drawergen.

This commit is contained in:
Rachael Alexanderson 2017-01-08 21:25:27 -05:00
parent 3b7bc2d1e5
commit 407204ee2c

View file

@ -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;