Re: [tcljava-user] threads 2.5.1 build errors
Brought to you by:
mdejong
|
From: Mo D. <md...@un...> - 2003-04-22 23:14:35
|
On Tue, 22 Apr 2003 18:24:31 -0400 "Patnaik, Anjela" <APa...@ci...> wrote: > Hello, > Well, I've built tcl 8.4.2 okay, but > now running into issues with the threads > 2.5.1 package. > > Has anyone built this successfully on > Win2k? Did you just run configure and then > make or have to edit the Makefile. > > here is what I get. > > configure --enable-threads --with-tcl=/c/tcl842/tcl8.4.2/win > --prefix=/c/tcl8 --exec-prefix=/c/tcl842 > > make: *** No rule to make target `threadCmd.o', needed by `thread25.dll'. > Stop Oh crud. You are building the thread package in the srcdir, right? The first thing you could try is to pass " --srcdir `pwd` " to the configure script. If that does not work, then build in a build dir instead of the srcdir and it should work. like: mkdir build_threads ; cd build_threads ../threads.../configure (OPTIONS) cheers Mo |