Skip to content

Commit

Permalink
skip epsm on aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
rurban committed Feb 28, 2024
1 parent 167a096 commit 4b68817
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions source/compilesm.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 4b68817

Please sign in to comment.