From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,55f7b17fb2df41a X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-15 12:55:02 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!sn-post-01!supernews.com!corp.supernews.com!not-for-mail From: Al Christians Newsgroups: comp.lang.ada Subject: Re: XML for Win32 Date: Mon, 15 Oct 2001 12:54:58 -0700 Organization: Public Property Software Message-ID: <3BCB3F12.3CDBC35E@easystreet.com> X-Mailer: Mozilla 4.76 [en] (WinNT; U) X-Accept-Language: en MIME-Version: 1.0 References: <3BCB1D6F.1B3468C1@easystreet.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Complaints-To: newsabuse@supernews.com Xref: archiver1.google.com comp.lang.ada:14577 Date: 2001-10-15T12:54:58-07:00 List-Id: Pascal Obry wrote: > > Al Christians writes: > > > gnatmake: invalid switch: u > > > > Is this because I've got gnat 3.13p1 and not gnat 3.14? > > Could be the problem. Just removes the gnatmake -u option. > It's not that easy. I don't think there is an option u set anywhere. Somehow, the 'unicode' parameter is being interpreted as an option switch, I think. When I run make with the gnu make v3.78 that is recommended on the Ada XML site, I get: make -e -C unicode all_obj make[1]: Entering directory `L:/Ada/xmlada/unicode' A subdirectory or file -p already exists. Error occurred while processing: -p. A subdirectory or file obj already exists. Error occurred while processing: obj. make[1]: [dirs] Error 1 (ignored) A subdirectory or file -p already exists. Error occurred while processing: -p. A subdirectory or file test already exists. Error occurred while processing: test. make[1]: [dirs] Error 1 (ignored) The system cannot find the path specified. make[1]: *** [unicode-ccs-iso_8859_1.o] Error 1 make[1]: Leaving directory `L:/Ada/xmlada/unicode' make: *** [unicode] Error 2 I run make with the gnu make v3.77 that was previously in my gnat\bin directory, I get: make -e -C unicode all_obj make[1]: Entering directory `L:/Ada/xmlada/unicode' gnatmake: invalid switch: u make[1]: *** [unicode-ccs-iso_8859_1.o] Error 4 make[1]: Leaving directory `L:/Ada/xmlada/unicode' make: *** [unicode] Error 2 This happens whether I run make from the regular Windows NT cmd prompt or from inside of the Cygwin bash shell. I have run the configure script from within bash, and it didn't crash that I could tell, but I don't know much about what it should have looked like. Al