Date: Mon, 5 Nov 2001 11:02:50 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: Michael Schuster cc: djgpp AT delorie DOT com Subject: Re: stlport In-Reply-To: <9s5idu$5kp$04$1@news.t-online.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 5 Nov 2001, Michael Schuster wrote: > E:\C++Prog\STLport-4.5\src>make > Zu viele Parameter - .. > Zu viele Parameter - .. > Zu viele Parameter - .. > mkdir -p ../lib Problem #1: you don't have GNU Fileutils installed, so Make is invoking the internal `mkdir' from COMMAND.COM, which doesn't know about -p and the forward slashes in file name. Solution: install v2gnu/fil40b.zip. > gcc -I../stlport -W -Wno-sign-compare -Wno-unused -Wno-uninitialized -ftempl > ate-depth-32 -mbnu210 -O2 dll_main.cpp -c -o ../lib/obj/DJGPP/Release/dll_main.o > cc1plus.exe: warning: -mbnu210 or -mno-bnu210 is ignored (option is obsolete). > In file included from stlport_prefix.h:28, > from dll_main.cpp:34: > ../stlport/ctime:25:44: ../g++-v3/ctime: No such file or directory (ENOENT) Problem #2: why didn't the compiler find the files in the ../g++-v3 directory? Does that directory exist? Is it possible that the problem with mkdir caused this one as well? I think all the other problems are caused by these two. Solve them and try again.