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-Thread: 103376,957ea3d057ecc0de X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.68.129.69 with SMTP id nu5mr1230646pbb.3.1336078173554; Thu, 03 May 2012 13:49:33 -0700 (PDT) Path: pr3ni550pbb.0!nntp.google.com!news1.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!nx01.iad01.newshosting.com!newshosting.com!news-out.readnews.com!transit3.readnews.com!panix!bloom-beacon.mit.edu!newsswitch.lcs.mit.edu!nntp.TheWorld.com!.POSTED!not-for-mail From: Robert A Duff Newsgroups: comp.lang.ada Subject: Re: Help with my first GPRbuild file please Date: Thu, 03 May 2012 16:49:32 -0400 Organization: The World Public Access UNIX, Brookline, MA Message-ID: References: <2622641.1774.1336074277508.JavaMail.geo-discussion-forums@vbq19> <27687929.0.1336075211401.JavaMail.geo-discussion-forums@vbsf10> <14892096.1560.1336077078791.JavaMail.geo-discussion-forums@vbmi19> NNTP-Posting-Host: shell01.theworld.com Mime-Version: 1.0 X-Trace: pcls6.std.com 1336078173 13157 192.74.137.71 (3 May 2012 20:49:33 GMT) X-Complaints-To: abuse@TheWorld.com NNTP-Posting-Date: Thu, 3 May 2012 20:49:33 +0000 (UTC) User-Agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.3 (irix) Cancel-Lock: sha1:DHuNAV/8QLlAACrS6NsHgufhfes= Content-Type: text/plain; charset=us-ascii Date: 2012-05-03T16:49:32-04:00 List-Id: Patrick writes: > gcc-4.4: -I/usr/include/glib-2.0: No such file or directory It's looking for a file called " -I/usr/include/glib-2.0". ^ | extra blank That doesn't start with "-", so it's not a switch. So it must be a file name, right? Computers can take things awfully literally sometimes. ;-) You should remove the extraneous blanks from the arguments in your project file. - Bob