diff --git a/source/compilesm.c b/source/compilesm.c index eba2f13f4..5a6cd05b0 100644 --- a/source/compilesm.c +++ b/source/compilesm.c @@ -89,6 +89,12 @@ int main(int argc, char **argv) { if (filename[len - 1] == 'c' && filename[len - 2] == '.') { filename[len - 2] = '\0'; current++; +#ifdef __x86_64__ + if (!strcmp(filename, "epsm")) { + printf("\tSkipped %s.c", filename); + continue; + } +#endif // compile sprintf(command, "%s%s.c%s%s", gcc, filename, options, filename); if (doTest)