Amiga.org
Amiga computer related discussion => Amiga Software Issues and Discussion => Topic started by: orange on December 20, 2017, 09:31:56 PM
-
I'm trying to compile rawread.c. The problem is it contains assembly source (asm.s file), so SAS/C exits with:
Error 425: Cannot find library asm.o
Presumably, asm should be processed first?
How to compile rawread?
Thanks.
-
You compile asm.s first with: phxass asm.s
Then use smake to compile/link all.
-
thanks, that works nice.