Welcome, Guest. Please login or register.

Author Topic: SAS/C compile with asm  (Read 1019 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline orangeTopic starter

  • Hero Member
  • *****
  • Join Date: Dec 2003
  • Posts: 2796
    • Show only replies by orange
SAS/C compile with asm
« 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.
Better sorry than worry.
 

Offline x303

Re: SAS/C compile with asm
« Reply #1 on: December 20, 2017, 10:01:20 PM »
You compile asm.s first with: phxass asm.s
Then use smake to compile/link all.
« Last Edit: December 20, 2017, 11:27:02 PM by x303 »
 

Offline orangeTopic starter

  • Hero Member
  • *****
  • Join Date: Dec 2003
  • Posts: 2796
    • Show only replies by orange
Re: SAS/C compile with asm
« Reply #2 on: December 20, 2017, 10:20:41 PM »
thanks, that works nice.
Better sorry than worry.