Remove asm auto-detection due to cross-compilation issues.

This commit is contained in:
Mike Pall
2009-12-08 21:28:49 +01:00
parent 699232f667
commit 6163a90d6d
3 changed files with 5 additions and 12 deletions

View File

@@ -398,16 +398,6 @@ int main(int argc, char **argv)
}
switch (ctx->mode) {
case BUILD_asm:
#if defined(__ELF__)
ctx->mode = BUILD_elfasm;
#elif defined(__MACH__)
ctx->mode = BUILD_machasm;
#else
fprintf(stderr,"Error: auto-guessing the system assembler failed\n");
return 1;
#endif
/* fallthrough */
case BUILD_elfasm:
case BUILD_coffasm:
case BUILD_machasm: