T.R | Title | User | Personal Name | Date | Lines |
---|
1498.1 | | LEDS::ACCIARDI | I Blit, therefore I am... | Thu Jun 23 1988 14:44 | 8 |
| Some software hardcodes pathnames within the program. I frequently
use NEWZAP to go in and edit all occurances of 'df0:bull' to 'dh0:bull'
or somesuch.
I've used NEWZAP to run Interceptor from my hard drive. I just
went in and replaced all the 'df0:' entries with 'dh1:games'.
Ed.
|
1498.2 | Still puzzled... | VTHRAX::KIP | No Dukes. | Thu Jun 23 1988 15:44 | 6 |
| Thanks for the reply.
However, aren't Lattice's logical directories (LC:, LIB:,
INCLUDE:,etc.) supposed to take care of this? Can't figure out
why everything's ok when I work from RAM:, but not from any disk-based
directory.
|
1498.3 | no patching required | SAUTER::SAUTER | John Sauter | Thu Jun 23 1988 16:43 | 7 |
| re: .2, that's correct. I have installed Lattice 4.? (without patches)
on my hard disk with no trouble, by following the instructions in
the manual. So far I have only executed "hello world", but that's
enough to convince me I did it right.
Sorry, I don't know why it doesn't work for you.
John Sauter
|
1498.4 | Lattice doesn't know why. | VTHRAX::KIP | No Dukes. | Thu Jun 23 1988 17:12 | 7 |
| Just for the record, I just talked with Lattice Tech Support on
this, and they're stumped, too!
Going to try omitting my extra utilities one-by-one (Conman, Popcli,
etc.) to see if I can find the culprit.
Thanks for the help!
|
1498.5 | my two cents | REGENT::VAILLETTE | | Thu Jun 23 1988 17:19 | 17 |
| I have Lattice C installed on my hard drive and all is well, but I do
remember having the same problem in the process of getting it installed. I
can post my startup-sequence files and listing of C directories tomorrow if
you don't get it working.
Two things that come to mind right now are:
* There was some confusion in my documentation whether LC: should point
to dh2:lattice_c or to dh2:lattice_c/c.
* You may need PATH RAM: add
By the way, I have conman and popcli running while using Lattice C, so
that shouldn't be the problem.
Gary
|
1498.6 | Cannot handle space | TLE::RMEYERS | Randy Meyers | Thu Jun 23 1988 18:04 | 28 |
| Re: .0
> Parameters after file name ignored
> Can't open quad file
> ...(aborting message)
Simple problem. The directory path of your source file contains a space.
When LC runs LC2, it finds the parent directory of the source file and
passes it as a switch argument to LC2.
So, if the full name of your source file is:
Hard Disk:Development/test.c
The command that LC passes to LC2 looks something like:
LC2 -oHard Disk:Development test
If the space appears in the device part of the directory path, you
sometimes get strange requesters. In my example (where the space is
in the device), you would get a requester asking you to put "Disk:"
in any drive. If the space is in part of the directory, your probably
will not get a requester.
I think this is a bug. I would like LC to quote names with spaces
and for LC1 and LC2 to be able to quoted names names with spaces.
Since you have been talking to tech support, I'll let you tell them. :-)
|