T.R | Title | User | Personal Name | Date | Lines |
---|
2718.1 | Need foreign command | WJG::GUINEAU | | Fri Jul 07 1989 15:00 | 14 |
|
You probably need to define it as a foreign command:
iff2six :== $device:[directory]iff2six
Don't forget the $ !!
ex:
$ iff2six :== $user1:[guineau.amiga]iff2six
$ iff2six pic.iff
John
|
2718.2 | I did but.... | SHARE::DOYLE | | Fri Jul 07 1989 15:18 | 8 |
| I already defined it as a foriegn command.
When trying to run, I get an error message.
"ERROR ACTIVATING "VAXCRTL""
It also displays were it is looking for the file-(some other directory)
It then says something about an image mismatch.
Now what?
Ed
|
2718.3 | Relink object | WJG::GUINEAU | | Fri Jul 07 1989 17:04 | 4 |
|
You need to relink iff2six.obj.
John
|
2718.4 | Different Version of the C Runtime Library | TLE::RMEYERS | Randy Meyers | Sat Jul 08 1989 15:47 | 16 |
| Re: .2
> When trying to run, I get an error message.
> "ERROR ACTIVATING "VAXCRTL""
> It also displays were it is looking for the file-(some other directory)
> It then says something about an image mismatch.
Looks like you are using an older version of VMS that the person
who linked the program for you. VMS realizes that the program
wants to use a newer version of the C Runtime Library than is
available, and so complains.
The advise in the previous note about recompiling and relinking
the program would fix the problem. Alternatively, you could
upgrade to the latest version of VMS.
|
2718.5 | Errors and more errors. | SHARE::DOYLE | | Mon Jul 10 1989 09:27 | 18 |
| The version I'm using is VMS V5.1.
I was able to get the "C" source code (iff2sixel.c).
I then entered "CC IFF2SIXEL".
This gave me "IFF2SIXEL.OBJ".
I then entered "LINK IFF2SIXEL".
This resulted in the following errors.
%LINK -I- UDFSYM "misc-word"
%LINK -W- USEUNDEF "misc-word"
These errors scrolled right off the screen.
It seems to be looking for a library that is non-existant.
However, I've little experience with "C" programing.
Could someone enlighten me?
Thanks;
Ed
|
2718.6 | | DICKNS::MACDONALD | WA1OMM 7.093/145.05/223.58 AX.25 | Mon Jul 10 1989 09:28 | 3 |
| RE: .0
You might have better luck with a program called CSIX.EXE.
|
2718.7 | Try This | WJG::GUINEAU | | Mon Jul 10 1989 10:18 | 10 |
|
To link a C program, try this:
$ link iff2sixel, sys$input:/opt (hit return here)
sys$library:vaxcrtl/share (type this and hit return)
^Z (control Z)
John
|
2718.8 | Thankyou | SHARE::DOYLE | | Mon Jul 10 1989 12:30 | 12 |
| RE: .7
Thanks, that did the trick.
RE: .6
Thanks for the alternate program.
Now, to experiment to see wich is better.
Ed
|