forums.ps2dev.org Forum Index forums.ps2dev.org
Homebrew PS2, PSP & PS3 Development Discussions
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Preparing Mac OS X for PSPSDK

 
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development
View previous topic :: View next topic  
Author Message
rinco



Joined: 21 Jan 2005
Posts: 255
Location: Canberra, Australia

PostPosted: Mon Jul 25, 2005 11:34 pm    Post subject: Preparing Mac OS X for PSPSDK Reply with quote

There are many ways to do this. I do it using the command line, ie: Terminal.app. The steps are something like this:

1. Install Mac OS X Developer tools. It's a free download, or just find Developer.pkg on the installation media (in a hidden directory).

2. Install Fink. The instructions are simple - http://fink.sourceforge.net/doc/bundled/install-first.php

3. Use Fink to install lots of stuff:

Quote:

sudo fink -y install autogen autoconf2.5 automake1.8 libtool make svn-client wget sdl


4. Fixup PATH to include Pspdev programs and prefer Fink programs. In my home directory I create a file called .bash_profile that looks like this:
Quote:
#!/bin/bash

export PSPDEV="/usr/local/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PSPPATH="$PSPDEV/bin:$PSPDEV/psp/bin:$PSPSDK/bin"

export PATH="/sw/bin:$PATH:$PSPPATH"


5. Create a /usr/local/pspdev directory and remove security problems:
Quote:

sudo mkdir -p /usr/local/pspdev
sudo chmod a+rwx /usr/local/pspdev


6. Grab the psptoolchain-200xxxxxxx.tgz script from http://www.oopo.net/consoledev/ . Safari should extract it as psptoolchain/ on the desktop, so type
Quote:

cd ~/Desktop/psptoolchain/
./toolchain.sh


If everything goes according to plan there will be programs in /usr/local/pspdev/bin/ and sample source in /usr/local/pspdev/psp/sdk/samples/.


Last edited by rinco on Mon Jul 25, 2005 11:58 pm; edited 2 times in total
Back to top
View user's profile Send private message
mrbrown



Joined: 17 Jan 2004
Posts: 1536

PostPosted: Mon Jul 25, 2005 11:39 pm    Post subject: Reply with quote

Moved to PSPSDK development and stickied.
Back to top
View user's profile Send private message
Shazz



Joined: 31 Aug 2004
Posts: 244
Location: Somewhere over the rainbow

PostPosted: Sat Sep 03, 2005 9:54 pm    Post subject: Reply with quote

Update for Mac OSX Tiger

1. Install Mac OS X Developer tools called Xcode Tools in the Installers directory : XcodeTools.mpkg or from the offical Mac developpers website : http://developer.apple.com/

2. Install Fink binaries : http://fink.sourceforge.net/download/index.php, it will save you hours...

Then follow Rinco's 3,4,... steps
_________________
- TiTAN Art Division -
http://www.titandemo.org
Back to top
View user's profile Send private message Visit poster's website
Eddy58



Joined: 05 Sep 2005
Posts: 3
Location: Nevers, France

PostPosted: Mon Sep 05, 2005 3:28 am    Post subject: Reply with quote

Hello, I'm a newbie in PSP dev. I have installed the PSPSDK here.
How can I compile a simple source (for try an example in pspdev/psp/sdk/samples/) with terminal now ?
What is the Fink utility, are we obliged to install it ?
Back to top
View user's profile Send private message
holger



Joined: 18 Aug 2005
Posts: 204

PostPosted: Mon Sep 05, 2005 4:38 am    Post subject: Reply with quote

enter the sample directory and type 'make' to build a sample. 'make kxploit' if you have a 1.50 revision. Or, use the psp-install script in svn, pspgl/tools/, instead.
Back to top
View user's profile Send private message
Eddy58



Joined: 05 Sep 2005
Posts: 3
Location: Nevers, France

PostPosted: Mon Sep 05, 2005 2:22 pm    Post subject: Reply with quote

Ok, this error message is returned :

Quote:

adijon-151-1-18-68:/opt/local/pspdev/psp/sdk/samples/power eddy$ make
make: psp-config: Command not found
Makefile:12: /lib/build.mak: No such file or directory


That's normal because the paths are undefined. The site where I have downloaded the sdk package say :

Quote:

Remember to set up your PATH environment variable to point to /opt/local/pspdev/bin and PSPDEV to /opt/local/pspdev and PSPSDK to /opt/local/pspdev/psp/sdk


I add this 3 lines at the top of the makefile, but the error message returned is the same...

Code:

PATH=/opt/local/pspdev/bin
PSPDEV=/opt/local/pspdev
PSPSDK=/opt/local/pspdev/psp/sdk


What is the exact procedure to correctly define this 3 variables ? Sorry, I'm not a terminal crack (XCode automation usually ;) ).
The rinco's installation procedure is to follow strictly to fix this problems ??

Thanks for your help, the PSP dev seems greatly funny :D
Back to top
View user's profile Send private message
holger



Joined: 18 Aug 2005
Posts: 204

PostPosted: Mon Sep 05, 2005 5:08 pm    Post subject: Reply with quote

export the environment variables for your shell. If you're using bash you may want to add this to your .bashrc or .bash_profile, so that you don't need to enter it again and again:

export PSPDEV=/usr/local/pspdev
export PSPSDK=$PSPDEV/psp/sdk
export PATH=$PSPDEV/bin:$PATH
export PSP_MOUNTDIR="/Volumes/PSP 32MB/"
export PSP_REVISION=1.50

Adjust the variables to your needs, depending where you installed the SDK, where want you want to mount the PSP, and which PSP revision you own.
Back to top
View user's profile Send private message
rinco



Joined: 21 Jan 2005
Posts: 255
Location: Canberra, Australia

PostPosted: Mon Sep 05, 2005 8:14 pm    Post subject: Reply with quote

Since you have pspsdk binaries, the Fink software probably isn't required. But the software you can install with Fink are very useful:
- svn-client and wget are required by toolchain.sh
- auto{gen,conf,make} and libtool are required to build some ports, like SDL and many SDL apps

I'm not sure where you are getting the pspsdk binaries from or why they install into /opt/local/pspdev. Although there is nothing technically wrong with this, many scripts and Makefiles specify /usr/local/pspdev/ (eg toolchain.sh). It might be less time consuming to conform.

Having psp-config tool in your PATH is the pspdev way of locating headers and libraries... it's a shell thing not a Makefile thing. Defining PSPDEV and PSPSDK is probably not important but does overcome some legacy issues. When creating new Makefiles - use psp-config, not these environment variables.
Back to top
View user's profile Send private message
Eddy58



Joined: 05 Sep 2005
Posts: 3
Location: Nevers, France

PostPosted: Tue Sep 06, 2005 12:32 am    Post subject: Reply with quote

Ok, all is good. :)
I make a .bash_profile file with necessary, followed by tries, and the .elf files are correctly build.
Now I can buy my PSP ! :-D

Thanks for you.
Back to top
View user's profile Send private message
chinaet



Joined: 08 May 2005
Posts: 7

PostPosted: Fri Oct 07, 2005 1:18 pm    Post subject: Reply with quote

Update:

fink -y install libtool14
Back to top
View user's profile Send private message
djone37



Joined: 19 Dec 2005
Posts: 3
Location: Toronto

PostPosted: Mon Dec 19, 2005 4:20 am    Post subject: Reply with quote

Easiest way to install the SDK for Mac:


http://www.cs.helsinki.fi/u/jikorhon/condev/psp/dl/pspdev_4.0.1.dmg


(Linked from http://www.deadcoderssociety.tk/)
_________________
The Software Engineering DJ
Back to top
View user's profile Send private message
rinco



Joined: 21 Jan 2005
Posts: 255
Location: Canberra, Australia

PostPosted: Mon Dec 19, 2005 4:14 pm    Post subject: Reply with quote

djone37 wrote:
Easiest way to install the SDK for Mac:


http://www.cs.helsinki.fi/u/jikorhon/condev/psp/dl/pspdev_4.0.1.dmg


(Linked from http://www.deadcoderssociety.tk/)


That build of the sdk is revision 792. The latest revision in svn is 1595. Following the instructions above is probably a better thing to do.
Back to top
View user's profile Send private message
djone37



Joined: 19 Dec 2005
Posts: 3
Location: Toronto

PostPosted: Mon Dec 19, 2005 4:20 pm    Post subject: Reply with quote

rinco wrote:
djone37 wrote:
Easiest way to install the SDK for Mac:


http://www.cs.helsinki.fi/u/jikorhon/condev/psp/dl/pspdev_4.0.1.dmg


(Linked from http://www.deadcoderssociety.tk/)


That build of the sdk is revision 792. The latest revision in svn is 1595. Following the instructions above is probably a better thing to do.


Your right! I just noticed that it is pretty old..
_________________
The Software Engineering DJ
Back to top
View user's profile Send private message
klump



Joined: 05 Feb 2006
Posts: 7

PostPosted: Sun Feb 05, 2006 11:31 pm    Post subject: Reply with quote

is one of these files any good? i found these on the same server

http://mirror.ftpz.us/http://www.cs.helsinki.fi/u/jikorhon/condev/psp/dl/pspdev20050625.dmg
http://mirror.ftpz.us/http://www.cs.helsinki.fi/u/jikorhon/condev/psp/dl/pspdev20050625.tar.bz2
http://mirror.ftpz.us/http://www.cs.helsinki.fi/u/jikorhon/condev/psp/dl/pspdev_4.0.1.dmg
Back to top
View user's profile Send private message
framerate



Joined: 14 Aug 2005
Posts: 20

PostPosted: Wed Apr 19, 2006 6:47 am    Post subject: Reply with quote

Doesn't work on macbook pro. Looks like fink isn't up to par with intel yet, but I'll keep trying.
Back to top
View user's profile Send private message
Shazz



Joined: 31 Aug 2004
Posts: 244
Location: Somewhere over the rainbow

PostPosted: Sat May 13, 2006 10:14 pm    Post subject: Reply with quote

Arrrrgh latest toolchain canot be compiled on mac OSX...

Due to binutils 2.16.1 and an issue with apple make :

Code:

gcc -g -O2    -c -o flat_bl.o ../../gprof/flat_bl.m
../../gprof/flat_bl.m:2: error: parse error before '%' token
make[3]: *** [flat_bl.o] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all] Error 2
make: *** [all-gprof] Error 2
ERROR BUILDING BINUTILS


Seems a known (but new) problem :
http://www.sourceware.org/ml/crossgcc/2006-03/msg00061.html

Quote:

On 3/4/06, Philip Rakity <prakity@yahoo.com> wrote:
>/Volumes/unix/crosstool-0.42/build/mips-unknown-linux-gnu/gcc-4.1.0-glibc-2.3.6/binutils-2.16.1/gprof/mips.c
> gcc -g -O2 -c -o flat_bl.o
> /Volumes/unix/crosstool-0.42/build/mips-unknown-linux-gnu/gcc-4.1.0-glibc-2.3.6/binutils-2.16.1/gprof/flat_bl.m
> /Volumes/unix/crosstool-0.42/build/mips-unknown-linux-gnu/gcc-4.1.0-glibc-2.3.6/binutils-2.16.1/gprof/flat_bl.m:2:
> error: parse error before '%' token
> make[3]: *** [flat_bl.o] Error 1
> make[2]: *** [all-recursive] Error 1
> make[1]: *** [all] Error 2
> make: *** [all-gprof] Error 2

Looks like a bug in Apple's make:
http://sourceware.org/ml/binutils/2005-12/msg00259.html

How annoying! So it looks like binutils-2.16.1 won't build on
Mac OS X without workarounds until somebody figures that out.
- Dan



Quote:

Disabling gprof from configure lets the build complete


How can I do that ?
_________________
- TiTAN Art Division -
http://www.titandemo.org
Back to top
View user's profile Send private message Visit poster's website
TyRaNiD



Joined: 18 Jan 2004
Posts: 918

PostPosted: Sat May 13, 2006 10:27 pm    Post subject: Reply with quote

Well it claims following the links that doing make -r should allow you to get it to build, but if you want to remove gprof building then revert the patch. Ill probably revert it anyway and maybe make it optional for now. Stupid apples :P

Or edit the patch to remove anything which touches the configure script.


Last edited by TyRaNiD on Sat May 13, 2006 10:34 pm; edited 1 time in total
Back to top
View user's profile Send private message
Shazz



Joined: 31 Aug 2004
Posts: 244
Location: Somewhere over the rainbow

PostPosted: Sat May 13, 2006 10:31 pm    Post subject: Reply with quote

[quote="TyRaNiD"]Well it claims following the links that doing make -r should allow you to get it to build/quote]

what shoud I change in the toolchain script ?

## Build the source.
$MAKE clean; $MAKE -r || { echo "ERROR BUILDING BINUTILS"; exit; }

?
_________________
- TiTAN Art Division -
http://www.titandemo.org
Back to top
View user's profile Send private message Visit poster's website
TyRaNiD



Joined: 18 Jan 2004
Posts: 918

PostPosted: Sat May 13, 2006 10:35 pm    Post subject: Reply with quote

yah, that might work
Back to top
View user's profile Send private message
Shazz



Joined: 31 Aug 2004
Posts: 244
Location: Somewhere over the rainbow

PostPosted: Sat May 13, 2006 11:04 pm    Post subject: Reply with quote

Disabling the built-in implicit rules seems to work (should be finished in 1 or 2 hours) even if I have no clue of the consequences of those non used rules...
_________________
- TiTAN Art Division -
http://www.titandemo.org
Back to top
View user's profile Send private message Visit poster's website
TyRaNiD



Joined: 18 Jan 2004
Posts: 918

PostPosted: Sat May 13, 2006 11:14 pm    Post subject: Reply with quote

Well with automake stuff it will override implicit rules for the most part anyway so it probably doesn't matter.
Back to top
View user's profile Send private message
urchin



Joined: 02 Jun 2005
Posts: 121

PostPosted: Sun May 14, 2006 4:42 am    Post subject: Reply with quote

Ah, the problem is that Apple's version of GCC is wired to interpret files with a ".m" extension as Objective-C source files.
Back to top
View user's profile Send private message
lightosx



Joined: 16 May 2006
Posts: 1

PostPosted: Fri May 19, 2006 3:41 am    Post subject: Reply with quote

Then, which is the solutions for run fine the binutils... ?

I intented all, but i dont have the solutions...


One question... I can use xcode for debugging code of psp ?
Back to top
View user's profile Send private message AIM Address
shifty



Joined: 16 Jun 2005
Posts: 32
Location: MIT

PostPosted: Mon May 22, 2006 11:53 pm    Post subject: make -r fix builds Reply with quote

this fix:

Quote:

## Build the source.
$MAKE clean; $MAKE -r || { echo "ERROR BUILDING BINUTILS"; exit; }


gets you through binutils.

thanks everyone, now on with the rest!
Back to top
View user's profile Send private message Visit poster's website
bronxbomber92



Joined: 21 Jul 2006
Posts: 36

PostPosted: Fri Jul 21, 2006 11:05 am    Post subject: Reply with quote

I need help as the local folder is invisible. Also when you say "/usr/local/pspdev" do we replace user with our login name? such as, say my loin name is bob. do you say /bob/local/pspdev ?
Also I'm confused about step four...?
Back to top
View user's profile Send private message
liquidjin



Joined: 19 Feb 2006
Posts: 12

PostPosted: Mon Aug 21, 2006 2:01 pm    Post subject: Re: Preparing Mac OS X for PSPSDK Reply with quote

rinco wrote:
There are many ways to do this. I do it using the command line, ie: Terminal.app. The steps are something like this:

1. Install Mac OS X Developer tools. It's a free download, or just find Developer.pkg on the installation media (in a hidden directory).


Ok I did this. I assume you are talking about Xcode - I got the 2.4 package.

rinco wrote:

2. Install Fink. The instructions are simple - http://fink.sourceforge.net/doc/bundled/install-first.php


This link is broken but I was able to download and installed Fink from the website.

rinco wrote:

3. Use Fink to install lots of stuff:

Quote:

sudo fink -y install autogen autoconf2.5 automake1.8 libtool make svn-client wget sdl




This is where I am hopelessly lost. For some reason, if I do not use the --no-use-binary-dist tag I am unable to connect to anything and always timeout. I was able to get autoconf2.5, automake1.8, libtool, make, wget, and sdl. Apparently, autogen isn't listed anymore and svn-client keeps giving me a bad checksum EVERYTIME.

What am I doing wrong!?!? Why can't I connect when I try to get the precompiled binaries? Also, why am I having such trouble with svn.

BTW - I am running this from an Intel IMac version 10.4.7.


Last edited by liquidjin on Tue Aug 22, 2006 12:30 am; edited 1 time in total
Back to top
View user's profile Send private message
Drakonite
Site Admin


Joined: 17 Jan 2004
Posts: 989

PostPosted: Mon Aug 21, 2006 7:10 pm    Post subject: Reply with quote

bronxbomber92 wrote:
I need help as the local folder is invisible. Also when you say "/usr/local/pspdev" do we replace user with our login name? such as, say my loin name is bob. do you say /bob/local/pspdev ?
Also I'm confused about step four...?

No, it has to do with the unix filesystem layout in cygwin. I don't use cygwin so can't give you much help there, someone else probably can.
_________________
Shoot Pixels Not People!
Makeshift Development
Back to top
View user's profile Send private message Visit poster's website
liquidjin



Joined: 19 Feb 2006
Posts: 12

PostPosted: Wed Aug 23, 2006 2:16 pm    Post subject: Re: make -r fix builds Reply with quote

My earlier problem fixed itself. Something must have been down on the mirror's ends because I was able to grab it fine a day later.

Now I am encountering a problem building the toolchain.sh. I got the error building binutils and added the "-r" to get past this section. It didn't work for any of the other sections. Now I'm getting an error trying to build GCC.
Any ideas?

Code:

config.status: creating config.h
gcc -c -g -O2   -DHAVE_CONFIG_H -I. -I../../fixincludes -I../include -I../../fixincludes/../include ../../fixincludes/fixincl.c
In file included from ../../fixincludes/fixlib.h:30,
                 from ../../fixincludes/fixincl.c:24:
../../fixincludes/system.h:223:23: error: filenames.h: No such file or directory
../../fixincludes/system.h:226:23: error: libiberty.h: No such file or directory
../../fixincludes/system.h:227:24: error: safe-ctype.h: No such file or directory
In file included from ../../fixincludes/fixincl.c:24:
../../fixincludes/fixlib.h:33:20: error: xregex.h: No such file or directory
In file included from ../../fixincludes/fixincl.c:24:
../../fixincludes/fixlib.h:171: error: parse error before 'regex_t'
../../fixincludes/fixlib.h:171: warning: no semicolon at end of struct or union
../../fixincludes/fixlib.h:236: error: parse error before 'regex_t'
../../fixincludes/fixlib.h:246: error: parse error before '*' token
../../fixincludes/fixincl.c:88: error: parse error before 'incl_quote_re'
../../fixincludes/fixincl.c:88: warning: data definition has no type or storage class
../../fixincludes/fixincl.c:90: error: parse error before 'ATTRIBUTE_NORETURN'
../../fixincludes/fixincl.c:90: warning: data definition has no type or storage class
In file included from ../../fixincludes/fixincl.c:98:
../../fixincludes/fixincl.x:69: error: array type has incomplete element type
../../fixincludes/fixincl.x:70: error: 'regex_t' undeclared here (not in a function)
../../fixincludes/fixincl.x:70: error: parse error before ')' token
../../fixincludes/fixincl.x:244: error: array type has incomplete element type
../../fixincludes/fixincl.x:245: error: parse error before ')' token
../../fixincludes/fixincl.x:436: error: array type has incomplete element type
../../fixincludes/fixincl.x:437: error: parse error before ')' token
../../fixincludes/fixincl.x:565: error: array type has incomplete element type
../../fixincludes/fixincl.x:566: error: parse error before ')' token
../../fixincludes/fixincl.x:600: error: array type has incomplete element type
../../fixincludes/fixincl.x:601: error: parse error before ')' token
../../fixincludes/fixincl.x:637: error: array type has incomplete element type
../../fixincludes/fixincl.x:638: error: parse error before ')' token
../../fixincludes/fixincl.x:639: error: parse error before ')' token
../../fixincludes/fixincl.x:674: error: array type has incomplete element type
../../fixincludes/fixincl.x:675: error: parse error before ')' token
../../fixincludes/fixincl.x:709: error: array type has incomplete element type
../../fixincludes/fixincl.x:710: error: parse error before ')' token
../../fixincludes/fixincl.x:744: error: array type has incomplete element type
../../fixincludes/fixincl.x:745: error: parse error before ')' token
../../fixincludes/fixincl.x:781: error: array type has incomplete element type
../../fixincludes/fixincl.x:782: error: parse error before ')' token
../../fixincludes/fixincl.x:819: error: array type has incomplete element type
../../fixincludes/fixincl.x:820: error: parse error before ')' token
../../fixincludes/fixincl.x:856: error: array type has incomplete element type
../../fixincludes/fixincl.x:857: error: parse error before ')' token
../../fixincludes/fixincl.x:891: error: array type has incomplete element type
../../fixincludes/fixincl.x:892: error: parse error before ')' token
../../fixincludes/fixincl.x:927: error: array type has incomplete element type
../../fixincludes/fixincl.x:928: error: parse error before ')' token
../../fixincludes/fixincl.x:961: error: array type has incomplete element type
../../fixincludes/fixincl.x:962: error: parse error before ')' token
../../fixincludes/fixincl.x:996: error: array type has incomplete element type
../../fixincludes/fixincl.x:997: error: parse error before ')' token
../../fixincludes/fixincl.x:1034: error: array type has incomplete element type
../../fixincludes/fixincl.x:1035: error: parse error before ')' token
../../fixincludes/fixincl.x:1073: error: array type has incomplete element type
../../fixincludes/fixincl.x:1074: error: parse error before ')' token
../../fixincludes/fixincl.x:1112: error: array type has incomplete element type
../../fixincludes/fixincl.x:1113: error: parse error before ')' token
../../fixincludes/fixincl.x:1151: error: array type has incomplete element type
../../fixincludes/fixincl.x:1152: error: parse error before ')' token
../../fixincludes/fixincl.x:1188: error: array type has incomplete element type
../../fixincludes/fixincl.x:1189: error: parse error before ')' token
../../fixincludes/fixincl.x:1229: error: array type has incomplete element type
../../fixincludes/fixincl.x:1230: error: parse error before ')' token
../../fixincludes/fixincl.x:1231: error: parse error before ')' token
../../fixincludes/fixincl.x:1274: error: array type has incomplete element type
../../fixincludes/fixincl.x:1275: error: parse error before ')' token
../../fixincludes/fixincl.x:1276: error: parse error before ')' token
../../fixincludes/fixincl.x:1321: error: array type has incomplete element type
../../fixincludes/fixincl.x:1322: error: parse error before ')' token
../../fixincludes/fixincl.x:1323: error: parse error before ')' token
../../fixincludes/fixincl.x:1324: error: parse error before ')' token
../../fixincludes/fixincl.x:1325: error: parse error before ')' token
../../fixincludes/fixincl.x:1361: error: array type has incomplete element type
../../fixincludes/fixincl.x:1362: error: parse error before ')' token
../../fixincludes/fixincl.x:1396: error: array type has incomplete element type
../../fixincludes/fixincl.x:1397: error: parse error before ')' token
../../fixincludes/fixincl.x:1437: error: array type has incomplete element type
../../fixincludes/fixincl.x:1438: error: parse error before ')' token
../../fixincludes/fixincl.x:1439: error: parse error before ')' token
../../fixincludes/fixincl.x:1479: error: array type has incomplete element type
../../fixincludes/fixincl.x:1480: error: parse error before ')' token
../../fixincludes/fixincl.x:1481: error: parse error before ')' token
../../fixincludes/fixincl.x:1517: error: array type has incomplete element type
../../fixincludes/fixincl.x:1518: error: parse error before ')' token
../../fixincludes/fixincl.x:1556: error: array type has incomplete element type
../../fixincludes/fixincl.x:1557: error: parse error before ')' token
../../fixincludes/fixincl.x:1592: error: array type has incomplete element type
../../fixincludes/fixincl.x:1593: error: parse error before ')' token
../../fixincludes/fixincl.x:1626: error: array type has incomplete element type
../../fixincludes/fixincl.x:1627: error: parse error before ')' token
../../fixincludes/fixincl.x:1667: error: array type has incomplete element type
../../fixincludes/fixincl.x:1668: error: parse error before ')' token
../../fixincludes/fixincl.x:1669: error: parse error before ')' token
../../fixincludes/fixincl.x:1710: error: array type has incomplete element type
../../fixincludes/fixincl.x:1711: error: parse error before ')' token
../../fixincludes/fixincl.x:1747: error: array type has incomplete element type
../../fixincludes/fixincl.x:1748: error: parse error before ')' token
../../fixincludes/fixincl.x:1817: error: array type has incomplete element type
../../fixincludes/fixincl.x:1818: error: parse error before ')' token
../../fixincludes/fixincl.x:1819: error: parse error before ')' token
../../fixincludes/fixincl.x:1855: error: array type has incomplete element type
../../fixincludes/fixincl.x:1856: error: parse error before ')' token
../../fixincludes/fixincl.x:1896: error: array type has incomplete element type
../../fixincludes/fixincl.x:1897: error: parse error before ')' token
../../fixincludes/fixincl.x:1898: error: parse error before ')' token
../../fixincludes/fixincl.x:1940: error: array type has incomplete element type
../../fixincludes/fixincl.x:1941: error: parse error before ')' token
../../fixincludes/fixincl.x:1942: error: parse error before ')' token
../../fixincludes/fixincl.x:1978: error: array type has incomplete element type
../../fixincludes/fixincl.x:1979: error: parse error before ')' token
../../fixincludes/fixincl.x:2021: error: array type has incomplete element type
../../fixincludes/fixincl.x:2022: error: parse error before ')' token
../../fixincludes/fixincl.x:2023: error: parse error before ')' token
../../fixincludes/fixincl.x:2056: error: array type has incomplete element type
../../fixincludes/fixincl.x:2057: error: parse error before ')' token
../../fixincludes/fixincl.x:2092: error: array type has incomplete element type
../../fixincludes/fixincl.x:2093: error: parse error before ')' token
../../fixincludes/fixincl.x:2135: error: array type has incomplete element type
../../fixincludes/fixincl.x:2136: error: parse error before ')' token
../../fixincludes/fixincl.x:2172: error: array type has incomplete element type
../../fixincludes/fixincl.x:2173: error: parse error before ')' token
../../fixincludes/fixincl.x:2213: error: array type has incomplete element type
../../fixincludes/fixincl.x:2214: error: parse error before ')' token
../../fixincludes/fixincl.x:2215: error: parse error before ')' token
../../fixincludes/fixincl.x:2262: error: array type has incomplete element type
../../fixincludes/fixincl.x:2263: error: parse error before ')' token
../../fixincludes/fixincl.x:2264: error: parse error before ')' token
../../fixincludes/fixincl.x:2329: error: array type has incomplete element type
../../fixincludes/fixincl.x:2330: error: parse error before ')' token
../../fixincludes/fixincl.x:2331: error: parse error before ')' token
../../fixincludes/fixincl.x:2374: error: array type has incomplete element type
../../fixincludes/fixincl.x:2375: error: parse error before ')' token
../../fixincludes/fixincl.x:2415: error: array type has incomplete element type
../../fixincludes/fixincl.x:2416: error: parse error before ')' token
../../fixincludes/fixincl.x:2417: error: parse error before ')' token
../../fixincludes/fixincl.x:2454: error: array type has incomplete element type
../../fixincludes/fixincl.x:2455: error: parse error before ')' token
../../fixincludes/fixincl.x:2489: error: array type has incomplete element type
../../fixincludes/fixincl.x:2490: error: parse error before ')' token
../../fixincludes/fixincl.x:2524: error: array type has incomplete element type
../../fixincludes/fixincl.x:2525: error: parse error before ')' token
../../fixincludes/fixincl.x:2559: error: array type has incomplete element type
../../fixincludes/fixincl.x:2560: error: parse error before ')' token
../../fixincludes/fixincl.x:2600: error: array type has incomplete element type
../../fixincludes/fixincl.x:2601: error: parse error before ')' token
../../fixincludes/fixincl.x:2602: error: parse error before ')' token
../../fixincludes/fixincl.x:2638: error: array type has incomplete element type
../../fixincludes/fixincl.x:2639: error: parse error before ')' token
../../fixincludes/fixincl.x:2677: error: array type has incomplete element type
../../fixincludes/fixincl.x:2678: error: parse error before ')' token
../../fixincludes/fixincl.x:2719: error: array type has incomplete element type
../../fixincludes/fixincl.x:2720: error: parse error before ')' token
../../fixincludes/fixincl.x:2721: error: parse error before ')' token
../../fixincludes/fixincl.x:2755: error: array type has incomplete element type
../../fixincludes/fixincl.x:2756: error: parse error before ')' token
../../fixincludes/fixincl.x:2796: error: array type has incomplete element type
../../fixincludes/fixincl.x:2797: error: parse error before ')' token
../../fixincludes/fixincl.x:2798: error: parse error before ')' token
../../fixincludes/fixincl.x:2838: error: array type has incomplete element type
../../fixincludes/fixincl.x:2839: error: parse error before ')' token
../../fixincludes/fixincl.x:2840: error: parse error before ')' token
../../fixincludes/fixincl.x:2880: error: array type has incomplete element type
../../fixincludes/fixincl.x:2881: error: parse error before ')' token
../../fixincludes/fixincl.x:2882: error: parse error before ')' token
../../fixincludes/fixincl.x:2922: error: array type has incomplete element type
../../fixincludes/fixincl.x:2923: error: parse error before ')' token
../../fixincludes/fixincl.x:2924: error: parse error before ')' token
../../fixincludes/fixincl.x:2957: error: array type has incomplete element type
../../fixincludes/fixincl.x:2958: error: parse error before ')' token
../../fixincludes/fixincl.x:2991: error: array type has incomplete element type
../../fixincludes/fixincl.x:2992: error: parse error before ')' token
../../fixincludes/fixincl.x:3026: error: array type has incomplete element type
../../fixincludes/fixincl.x:3027: error: parse error before ')' token
../../fixincludes/fixincl.x:3063: error: array type has incomplete element type
../../fixincludes/fixincl.x:3064: error: parse error before ')' token
../../fixincludes/fixincl.x:3102: error: array type has incomplete element type
../../fixincludes/fixincl.x:3103: error: parse error before ')' token
../../fixincludes/fixincl.x:3144: error: array type has incomplete element type
../../fixincludes/fixincl.x:3145: error: parse error before ')' token
../../fixincludes/fixincl.x:3182: error: array type has incomplete element type
../../fixincludes/fixincl.x:3183: error: parse error before ')' token
../../fixincludes/fixincl.x:3218: error: array type has incomplete element type
../../fixincludes/fixincl.x:3219: error: parse error before ')' token
../../fixincludes/fixincl.x:3256: error: array type has incomplete element type
../../fixincludes/fixincl.x:3257: error: parse error before ')' token
../../fixincludes/fixincl.x:3295: error: array type has incomplete element type
../../fixincludes/fixincl.x:3296: error: parse error before ')' token
../../fixincludes/fixincl.x:3333: error: array type has incomplete element type
../../fixincludes/fixincl.x:3334: error: parse error before ')' token
../../fixincludes/fixincl.x:3369: error: array type has incomplete element type
../../fixincludes/fixincl.x:3370: error: parse error before ')' token
../../fixincludes/fixincl.x:3404: error: array type has incomplete element type
../../fixincludes/fixincl.x:3405: error: parse error before ')' token
../../fixincludes/fixincl.x:3439: error: array type has incomplete element type
../../fixincludes/fixincl.x:3440: error: parse error before ')' token
../../fixincludes/fixincl.x:3476: error: array type has incomplete element type
../../fixincludes/fixincl.x:3477: error: parse error before ')' token
../../fixincludes/fixincl.x:3517: error: array type has incomplete element type
../../fixincludes/fixincl.x:3518: error: parse error before ')' token
../../fixincludes/fixincl.x:3519: error: parse error before ')' token
../../fixincludes/fixincl.x:3561: error: array type has incomplete element type
../../fixincludes/fixincl.x:3562: error: parse error before ')' token
../../fixincludes/fixincl.x:3596: error: array type has incomplete element type
../../fixincludes/fixincl.x:3597: error: parse error before ')' token
../../fixincludes/fixincl.x:3639: error: array type has incomplete element type
../../fixincludes/fixincl.x:3640: error: parse error before ')' token
../../fixincludes/fixincl.x:3641: error: parse error before ')' token
../../fixincludes/fixincl.x:3682: error: array type has incomplete element type
../../fixincludes/fixincl.x:3683: error: parse error before ')' token
../../fixincludes/fixincl.x:3684: error: parse error before ')' token
../../fixincludes/fixincl.x:3717: error: array type has incomplete element type
../../fixincludes/fixincl.x:3757: error: array type has incomplete element type
../../fixincludes/fixincl.x:3758: error: parse error before ')' token
../../fixincludes/fixincl.x:3759: error: parse error before ')' token
../../fixincludes/fixincl.x:3804: error: array type has incomplete element type
../../fixincludes/fixincl.x:3805: error: parse error before ')' token
../../fixincludes/fixincl.x:3806: error: parse error before ')' token
../../fixincludes/fixincl.x:3843: error: array type has incomplete element type
../../fixincludes/fixincl.x:3844: error: parse error before ')' token
../../fixincludes/fixincl.x:3880: error: array type has incomplete element type
../../fixincludes/fixincl.x:3881: error: parse error before ')' token
../../fixincludes/fixincl.x:3915: error: array type has incomplete element type
../../fixincludes/fixincl.x:3916: error: parse error before ')' token
../../fixincludes/fixincl.x:3952: error: array type has incomplete element type
../../fixincludes/fixincl.x:3953: error: parse error before ')' token
../../fixincludes/fixincl.x:3987: error: array type has incomplete element type
../../fixincludes/fixincl.x:3988: error: parse error before ')' token
../../fixincludes/fixincl.x:4023: error: array type has incomplete element type
../../fixincludes/fixincl.x:4024: error: parse error before ')' token
../../fixincludes/fixincl.x:4059: error: array type has incomplete element type
../../fixincludes/fixincl.x:4060: error: parse error before ')' token
../../fixincludes/fixincl.x:4095: error: array type has incomplete element type
../../fixincludes/fixincl.x:4096: error: parse error before ')' token
../../fixincludes/fixincl.x:4130: error: array type has incomplete element type
../../fixincludes/fixincl.x:4131: error: parse error before ')' token
../../fixincludes/fixincl.x:4165: error: array type has incomplete element type
../../fixincludes/fixincl.x:4166: error: parse error before ')' token
../../fixincludes/fixincl.x:4206: error: array type has incomplete element type
../../fixincludes/fixincl.x:4257: error: array type has incomplete element type
../../fixincludes/fixincl.x:4262: error: parse error before ')' token
../../fixincludes/fixincl.x:4299: error: array type has incomplete element type
../../fixincludes/fixincl.x:4300: error: parse error before ')' token
../../fixincludes/fixincl.x:4334: error: array type has incomplete element type
../../fixincludes/fixincl.x:4335: error: parse error before ')' token
../../fixincludes/fixincl.x:4370: error: array type has incomplete element type
../../fixincludes/fixincl.x:4371: error: parse error before ')' token
../../fixincludes/fixincl.x:4408: error: array type has incomplete element type
../../fixincludes/fixincl.x:4409: error: parse error before ')' token
../../fixincludes/fixincl.x:4444: error: array type has incomplete element type
../../fixincludes/fixincl.x:4445: error: parse error before ')' token
../../fixincludes/fixincl.x:4479: error: array type has incomplete element type
../../fixincludes/fixincl.x:4480: error: parse error before ')' token
../../fixincludes/fixincl.x:4517: error: array type has incomplete element type
../../fixincludes/fixincl.x:4518: error: parse error before ')' token
../../fixincludes/fixincl.x:4552: error: array type has incomplete element type
../../fixincludes/fixincl.x:4553: error: parse error before ')' token
../../fixincludes/fixincl.x:4593: error: array type has incomplete element type
../../fixincludes/fixincl.x:4594: error: parse error before ')' token
../../fixincludes/fixincl.x:4595: error: parse error before ')' token
../../fixincludes/fixincl.x:4643: error: array type has incomplete element type
../../fixincludes/fixincl.x:4644: error: parse error before ')' token
../../fixincludes/fixincl.x:4680: error: array type has incomplete element type
../../fixincludes/fixincl.x:4681: error: parse error before ')' token
../../fixincludes/fixincl.x:4723: error: array type has incomplete element type
../../fixincludes/fixincl.x:4724: error: parse error before ')' token
../../fixincludes/fixincl.x:4764: error: array type has incomplete element type
../../fixincludes/fixincl.x:4765: error: parse error before ')' token
../../fixincludes/fixincl.x:4766: error: parse error before ')' token
../../fixincludes/fixincl.x:4807: error: array type has incomplete element type
../../fixincludes/fixincl.x:4808: error: parse error before ')' token
../../fixincludes/fixincl.x:4809: error: parse error before ')' token
../../fixincludes/fixincl.x:4850: error: array type has incomplete element type
../../fixincludes/fixincl.x:4851: error: parse error before ')' token
../../fixincludes/fixincl.x:4852: error: parse error before ')' token
../../fixincludes/fixincl.x:4893: error: array type has incomplete element type
../../fixincludes/fixincl.x:4894: error: parse error before ')' token
../../fixincludes/fixincl.x:4895: error: parse error before ')' token
../../fixincludes/fixincl.x:4946: error: array type has incomplete element type
../../fixincludes/fixincl.x:4947: error: parse error before ')' token
../../fixincludes/fixincl.x:4948: error: parse error before ')' token
../../fixincludes/fixincl.x:4991: error: array type has incomplete element type
../../fixincludes/fixincl.x:4992: error: parse error before ')' token
../../fixincludes/fixincl.x:4993: error: parse error before ')' token
../../fixincludes/fixincl.x:5036: error: array type has incomplete element type
../../fixincludes/fixincl.x:5037: error: parse error before ')' token
../../fixincludes/fixincl.x:5038: error: parse error before ')' token
../../fixincludes/fixincl.x:5087: error: array type has incomplete element type
../../fixincludes/fixincl.x:5088: error: parse error before ')' token
../../fixincludes/fixincl.x:5089: error: parse error before ')' token
../../fixincludes/fixincl.x:5134: error: array type has incomplete element type
../../fixincludes/fixincl.x:5135: error: parse error before ')' token
../../fixincludes/fixincl.x:5136: error: parse error before ')' token
../../fixincludes/fixincl.x:5171: error: array type has incomplete element type
../../fixincludes/fixincl.x:5172: error: parse error before ')' token
../../fixincludes/fixincl.x:5206: error: array type has incomplete element type
../../fixincludes/fixincl.x:5207: error: parse error before ')' token
../../fixincludes/fixincl.x:5246: error: array type has incomplete element type
../../fixincludes/fixincl.x:5247: error: parse error before ')' token
../../fixincludes/fixincl.x:5288: error: array type has incomplete element type
../../fixincludes/fixincl.x:5289: error: parse error before ')' token
../../fixincludes/fixincl.x:5290: error: parse error before ')' token
../../fixincludes/fixincl.x:5329: error: array type has incomplete element type
../../fixincludes/fixincl.x:5330: error: parse error before ')' token
../../fixincludes/fixincl.x:5331: error: parse error before ')' token
../../fixincludes/fixincl.x:5376: error: array type has incomplete element type
../../fixincludes/fixincl.x:5377: error: parse error before ')' token
../../fixincludes/fixincl.x:5378: error: parse error before ')' token
../../fixincludes/fixincl.x:5413: error: array type has incomplete element type
../../fixincludes/fixincl.x:5414: error: parse error before ')' token
../../fixincludes/fixincl.x:5450: error: array type has incomplete element type
../../fixincludes/fixincl.x:5451: error: parse error before ')' token
../../fixincludes/fixincl.x:5488: error: array type has incomplete element type
../../fixincludes/fixincl.x:5489: error: parse error before ')' token
../../fixincludes/fixincl.x:5537: error: array type has incomplete element type
../../fixincludes/fixincl.x:5538: error: parse error before ')' token
../../fixincludes/fixincl.x:5539: error: parse error before ')' token
../../fixincludes/fixincl.x:5597: error: array type has incomplete element type
../../fixincludes/fixincl.x:5599: error: parse error before ')' token
../../fixincludes/fixincl.x:5600: error: parse error before ')' token
../../fixincludes/fixincl.x:5601: error: parse error before ')' token
../../fixincludes/fixincl.x:5640: error: array type has incomplete element type
../../fixincludes/fixincl.x:5642: error: parse error before ')' token
../../fixincludes/fixincl.x:5680: error: array type has incomplete element type
../../fixincludes/fixincl.x:5682: error: parse error before ')' token
../../fixincludes/fixincl.x:5716: error: array type has incomplete element type
../../fixincludes/fixincl.x:5717: error: parse error before ')' token
../../fixincludes/fixincl.x:5760: error: array type has incomplete element type
../../fixincludes/fixincl.x:5761: error: parse error before ')' token
../../fixincludes/fixincl.x:5762: error: parse error before ')' token
../../fixincludes/fixincl.x:5763: error: parse error before ')' token
../../fixincludes/fixincl.x:5804: error: array type has incomplete element type
../../fixincludes/fixincl.x:5805: error: parse error before ')' token
../../fixincludes/fixincl.x:5806: error: parse error before ')' token
../../fixincludes/fixincl.x:5845: error: array type has incomplete element type
../../fixincludes/fixincl.x:5846: error: parse error before ')' token
../../fixincludes/fixincl.x:5880: error: array type has incomplete element type
../../fixincludes/fixincl.x:5881: error: parse error before ')' token
../../fixincludes/fixincl.x:5919: error: array type has incomplete element type
../../fixincludes/fixincl.x:5920: error: parse error before ')' token
../../fixincludes/fixincl.x:5957: error: array type has incomplete element type
../../fixincludes/fixincl.x:5958: error: parse error before ')' token
../../fixincludes/fixincl.x:5991: error: array type has incomplete element type
../../fixincludes/fixincl.x:5992: error: parse error before ')' token
../../fixincludes/fixincl.x:6030: error: array type has incomplete element type
../../fixincludes/fixincl.x:6031: error: parse error before ')' token
../../fixincludes/fixincl.x:6065: error: array type has incomplete element type
../../fixincludes/fixincl.x:6066: error: parse error before ')' token
../../fixincludes/fixincl.x:6099: error: array type has incomplete element type
../../fixincludes/fixincl.x:6100: error: parse error before ')' token
../../fixincludes/fixincl.x:6137: error: array type has incomplete element type
../../fixincludes/fixincl.x:6138: error: parse error before ')' token
../../fixincludes/fixincl.x:6179: error: array type has incomplete element type
../../fixincludes/fixincl.x:6180: error: parse error before ')' token
../../fixincludes/fixincl.x:6181: error: parse error before ')' token
../../fixincludes/fixincl.x:6215: error: array type has incomplete element type
../../fixincludes/fixincl.x:6216: error: parse error before ')' token
../../fixincludes/fixincl.x:6256: error: array type has incomplete element type
../../fixincludes/fixincl.x:6257: error: parse error before ')' token
../../fixincludes/fixincl.x:6258: error: parse error before ')' token
../../fixincludes/fixincl.x:6294: error: array type has incomplete element type
../../fixincludes/fixincl.x:6295: error: parse error before ')' token
../../fixincludes/fixincl.x:6344: error: array type has incomplete element type
../../fixincludes/fixincl.x:6345: error: parse error before ')' token
../../fixincludes/fixincl.x:6346: error: parse error before ')' token
../../fixincludes/fixincl.x:6380: error: array type has incomplete element type
../../fixincludes/fixincl.x:6381: error: parse error before ')' token
../../fixincludes/fixincl.x:6415: error: array type has incomplete element type
../../fixincludes/fixincl.x:6416: error: parse error before ')' token
../../fixincludes/fixincl.x:6450: error: array type has incomplete element type
../../fixincludes/fixincl.x:6451: error: parse error before ')' token
../../fixincludes/fixincl.x:6485: error: array type has incomplete element type
../../fixincludes/fixincl.x:6486: error: parse error before ')' token
../../fixincludes/fixincl.x:6520: error: array type has incomplete element type
../../fixincludes/fixincl.x:6521: error: parse error before ')' token
../../fixincludes/fixincl.x:6556: error: array type has incomplete element type
../../fixincludes/fixincl.x:6557: error: parse error before ')' token
../../fixincludes/fixincl.x:6592: error: array type has incomplete element type
../../fixincludes/fixincl.x:6593: error: parse error before ')' token
../../fixincludes/fixincl.x:6628: error: array type has incomplete element type
../../fixincludes/fixincl.x:6629: error: parse error before ')' token
../../fixincludes/fixincl.x:6665: error: array type has incomplete element type
../../fixincludes/fixincl.x:6666: error: parse error before ')' token
../../fixincludes/fixincl.x:6700: error: array type has incomplete element type
../../fixincludes/fixincl.x:6701: error: parse error before ')' token
../../fixincludes/fixincl.x:6734: error: array type has incomplete element type
../../fixincludes/fixincl.x:6735: error: parse error before ')' token
../../fixincludes/fixincl.x:6769: error: array type has incomplete element type
../../fixincludes/fixincl.x:6770: error: parse error before ')' token
../../fixincludes/fixincl.x:6803: error: array type has incomplete element type
../../fixincludes/fixincl.x:6804: error: parse error before ')' token
../../fixincludes/fixincl.x:6837: error: array type has incomplete element type
../../fixincludes/fixincl.x:6838: error: parse error before ')' token
../../fixincludes/fixincl.x:6876: error: array type has incomplete element type
../../fixincludes/fixincl.x:6877: error: parse error before ')' token
../../fixincludes/fixincl.x:6912: error: array type has incomplete element type
../../fixincludes/fixincl.x:6913: error: parse error before ')' token
../../fixincludes/fixincl.x:6953: error: array type has incomplete element type
../../fixincludes/fixincl.x:6954: error: parse error before ')' token
../../fixincludes/fixincl.x:6987: error: array type has incomplete element type
../../fixincludes/fixincl.x:6988: error: parse error before ')' token
../../fixincludes/fixincl.x:7029: error: array type has incomplete element type
../../fixincludes/fixincl.x:7030: error: parse error before ')' token
../../fixincludes/fixincl.x:7083: error: array type has incomplete element type
../../fixincludes/fixincl.x:7084: error: parse error before ')' token
../../fixincludes/fixincl.x:7122: error: array type has incomplete element type
../../fixincludes/fixincl.x:7123: error: parse error before ')' token
../../fixincludes/fixincl.x:7170: error: array type has incomplete element type
../../fixincludes/fixincl.x:7172: error: parse error before ')' token
../../fixincludes/fixincl.x:7207: error: array type has incomplete element type
../../fixincludes/fixincl.x:7208: error: parse error before ')' token
../../fixincludes/fixincl.x:7248: error: array type has incomplete element type
../../fixincludes/fixincl.x:7249: error: parse error before ')' token
../../fixincludes/fixincl.x:7250: error: parse error before ')' token
../../fixincludes/fixincl.x:7284: error: array type has incomplete element type
../../fixincludes/fixincl.x:7285: error: parse error before ')' token
../../fixincludes/fixincl.x:7333: error: array type has incomplete element type
../../fixincludes/fixincl.x:7334: error: parse error before ')' token
../../fixincludes/fixincl.x:7378: error: array type has incomplete element type
../../fixincludes/fixincl.x:7382: error: parse error before ')' token
../../fixincludes/fixincl.x:7422: error: array type has incomplete element type
../../fixincludes/fixincl.x:7424: error: parse error before ')' token
../../fixincludes/fixincl.x:7523: error: array type has incomplete element type
../../fixincludes/fixincl.x:7524: error: parse error before ')' token
../../fixincludes/fixincl.x:7563: error: array type has incomplete element type
../../fixincludes/fixincl.x:7564: error: parse error before ')' token
../../fixincludes/fixincl.x:7565: error: parse error before ')' token
../../fixincludes/fixincl.x:7609: error: array type has incomplete element type
../../fixincludes/fixincl.x:7610: error: parse error before ')' token
../../fixincludes/fixincl.x:7611: error: parse error before ')' token
../../fixincludes/fixincl.x:7645: error: array type has incomplete element type
../../fixincludes/fixincl.x:7646: error: parse error before ')' token
../../fixincludes/fixincl.x:7685: error: array type has incomplete element type
../../fixincludes/fixincl.x:7686: error: parse error before ')' token
../../fixincludes/fixincl.c: In function 'initialize':
../../fixincludes/fixincl.c:220: warning: comparison between pointer and integer
../../fixincludes/fixincl.c: In function 'load_file':
../../fixincludes/fixincl.c:348: warning: initialization makes pointer from integer without a cast
../../fixincludes/fixincl.c: In function 'run_compiles':
../../fixincludes/fixincl.c:454: error: 'p_re' undeclared (first use in this function)
../../fixincludes/fixincl.c:454: error: (Each undeclared identifier is reported only once
../../fixincludes/fixincl.c:454: error: for each function it appears in.)
../../fixincludes/fixincl.c:487: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c:491: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c:492: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c:492: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c:496: error: increment of pointer to unknown structure
../../fixincludes/fixincl.c:496: error: arithmetic on pointer to an incomplete type
../../fixincludes/fixincl.c: In function 'create_file':
../../fixincludes/fixincl.c:570: warning: assignment makes pointer from integer without a cast
../../fixincludes/fixincl.c: In function 'test_test':
../../fixincludes/fixincl.c:609: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c: In function 'egrep_test':
../../fixincludes/fixincl.c:656: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c: At top level:
../../fixincludes/fixincl.c:721: error: parse error before 'regmatch_t'
../../fixincludes/fixincl.c: In function 'extract_quoted_files':
../../fixincludes/fixincl.c:723: error: 'pz_fixed_file' undeclared (first use in this function)
../../fixincludes/fixincl.c:724: error: 'pz_data' undeclared (first use in this function)
../../fixincludes/fixincl.c:739: error: 'p_re_match' undeclared (first use in this function)
../../fixincludes/fixincl.c: In function 'start_fixer':
../../fixincludes/fixincl.c:1024: warning: assignment makes pointer from integer without a cast
../../fixincludes/fixincl.c: In function 'fix_applies':
../../fixincludes/fixincl.c:1132: error: increment of pointer to unknown structure
../../fixincludes/fixincl.c:1132: error: arithmetic on pointer to an incomplete type
../../fixincludes/fixincl.c:1134: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c:1171: error: dereferencing pointer to incomplete type
../../fixincludes/fixincl.c: In function 'test_for_changes':
../../fixincludes/fixincl.c:1220: warning: initialization makes pointer from integer without a cast
../../fixincludes/fixincl.c:1268: error: 'regmatch_t' undeclared (first use in this function)
../../fixincludes/fixincl.c:1268: error: parse error before 'match'
../../fixincludes/fixincl.c:1273: error: 'match' undeclared (first use in this function)
make[1]: *** [fixincl.o] Error 1
make: *** [all-fixincludes] Error 2
ERROR BUILDING GCC
christopher-plummers-computer:~/pspdev/psptoolchain Zion$
[/code]
Back to top
View user's profile Send private message
minsin



Joined: 09 Jul 2006
Posts: 4

PostPosted: Sun Oct 15, 2006 8:36 am    Post subject: Reply with quote

Where do you put this?
Into terminal?
Code:


$MAKE clean; $MAKE -r || { echo "ERROR BUILDING BINUTILS"; exit; }
Back to top
View user's profile Send private message
Elenaher



Joined: 03 Oct 2006
Posts: 4

PostPosted: Wed Nov 01, 2006 6:36 am    Post subject: Reply with quote

I got also the error building binutils and added -r. It worked but now i'm encountering another pb :

../../../../../../newlib/libc/sys/psp/interrupt.S:41: Error: unrecognized opcode `mtic $a0,$0'
make[5]: *** [interrupt.o] Error 1
make[4]: *** [all-recursive] Error 1
make[3]: *** [all-recursive] Error 1
make[2]: *** [all-recursive] Error 1
make[1]: *** [all-recursive-am] Error 2
make: *** [all-target-newlib] Error 2
ERROR BUILDING NEWLIB

So I tried :

$MAKE clean; $MAKE -r || { echo "ERROR BUILDING NEWLIB"; exit; }

But, as liquidjin said, it didn't work...

Any ideas to help me ?
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    forums.ps2dev.org Forum Index -> PSP Development All times are GMT + 10 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group