[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [avr-gcc-list] Can not compile avrmon-stk200
From: |
Theodore A. Roth |
Subject: |
Re: [avr-gcc-list] Can not compile avrmon-stk200 |
Date: |
Wed, 8 Oct 2003 11:16:08 -0700 (PDT) |
On Wed, 8 Oct 2003, Juraj wrote:
> Hi all,
>
> I have package avrmon-stk200-0.6.0.
> I need to compile host and target part of it, to use with avr-insight.
>
> When I try to compile Host part, like is written in INSTALL:
>
> $ cd host
> $ make
> gcc -O mon.c -o mon -lreadline
> /usr/lib/gcc-lib/i386-redhat-linux/3.2.2/../../../libreadline.so:
> undefined reference to `tgetnum'
Try adding libtermcap:
gcc -O mon.c -o mon -lreadline -ltermcap
Ted Roth