Subject:
|
Re: Help w/install _or_ It all went so well
|
Newsgroups:
|
lugnet.robotics.rcx.legos
|
Date:
|
Tue, 18 Nov 2003 19:05:16 GMT
|
Viewed:
|
3660 times
|
| |
| |
Thanks.
This solved the initial problem which revealed a second... genlds.c has two
printf() statements that have multi-line string args. I appended '\' to the end
of all these and everything compiled fine. Now to test things.
-Wes
In lugnet.robotics.rcx.legos, Rand Krakora wrote:
> Or ( IMO ) better yet, just macro every line between 152 and 171, that's
> what I did, saved the trouble of another install...
>
> Put this on each line around the assembly code: __asm__("");
>
> Make sure you keep the indent spacing also:
>
> label:
>
> should be:
>
> asm("label:");
>
> Not:
>
> asm(" label: ");
>
> Something elase you might run into also, that I did. In Makefile.common, I
> had to change TOOLPREFIX:
>
> From this:
>
> TOOLPREFIX=/h8300-hms-
>
> To this ( removed beginning "/" ):
>
> TOOLPREFIX=h8300-hms-
>
> Maybe you won't, but I did have to for it to build code in the lower
> subdirectories ( c, c++ ).
>
> RK
<snipped initial problem description>
|
|
Message is in Reply To:
| | Re: Help w/install _or_ It all went so well
|
| Or ( IMO ) better yet, just macro every line between 152 and 171, that's what I did, saved the trouble of another install... Put this on each line around the assembly code: __asm__(""); Make sure you keep the indent spacing also: label: should be: (...) (21 years ago, 14-Nov-03, to lugnet.robotics.rcx.legos)
|
9 Messages in This Thread:
- Entire Thread on One Page:
- Nested:
All | Brief | Compact | Dots
Linear:
All | Brief | Compact
|
|
|
|