This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

Help me with this compile error ...

Old posts that have not been replied to for several years.
Locked
k
kapot

Post by kapot »

Because my machine does not have TcL, I installed TcL 8.3.4 in my home directory, /home/cibe.
Before executing ./configure, I set :
export TCLINC=/home/cibe/tcl/include
export TCLLIB=/home/cibe/tcl/lib

then everything went fine .. ./configure fine.

But, I got error (see below) with 'make' :sad:

What should I do next? can egg1.6.8 use TcL from home directory ?

Please help me, thanks,

==== compile log ====
Linking eggdrop...

gcc -pipe -o ../eggdrop bg.o botcmd.o botmsg.o botnet.o chanprog.o cmds.o dcc.o
dccutil.o dns.o flags.o language.o main.o mem.o misc.o misc_file.o modules.o net.o
rfc1459.o tcl.o tcldcc.o tclhash.o tclmisc.o tcluser.o userent.o userrec.o users.o
-L/home/cibe/tcl/lib -ltcl83 -lm md5/md5c.o compat/*.o `cat mod/mod.xlibs`
/home/cibe/tcl/lib/libtcl83.so: warning: tmpnam() possibly used unsafely; consider using
mkstemp()
strip ../eggdrop
Successful compile: eggdrop


/usr/libexec/ld-elf.so.1: Shared object "libtcl83.so" not found
*** Error code 1

Stop in /usr/home/cibe/eggdrop1.6.8.
m
masskilla
Op
Posts: 172
Joined: Wed Oct 03, 2001 8:00 pm
Location: Croatia

Post by masskilla »

Hi kapot

You need to find where ld-elf.so.1 is (try: find / -name "ls-elf.so.1" -print 2>/dev/null ) then do: export LD_LIBRARY_PATH=path/to/ld-elf.so.1

Theen try again.
That _should_ work.


MaSsKilla

#eggdrop
Undernet
g
guppy
eggdrop engineer
Posts: 199
Joined: Mon Sep 24, 2001 8:00 pm
Location: Canada
Contact:

Post by guppy »

On 2002-01-08 08:47, masskilla wrote:

You need to find where ld-elf.so.1 is (try: find / -name "ls-elf.so.1" -print 2>/dev/null ) then do: export LD_LIBRARY_PATH=path/to/ld-elf.so.1
Why ld-elf.so.1? He would want to set it to the path where libtcl8.3.so is ... not ld-elf.so.1

Jeff
m
masskilla
Op
Posts: 172
Joined: Wed Oct 03, 2001 8:00 pm
Location: Croatia

Post by masskilla »

Hi guppy

Well I had the same problem, you told me to do what I told him =P

And it worked.. *shrugs*


MaSsKilla

#eggdrop
Undernet
Locked