On 08/01/2009 04:28 AM, Robert Oeffner wrote:
I'm trying to port GCC 4.4.0 to interix. I have some issues with libgomp. To save time rather than bootstrapping GCC each time I make a change I would like to compile libgomp separately to make my amendments take effect.
Configure with --disable-bootstrap so that gcc won't try to bootstrap when you type make. You can also use "make all-target-libgomp" to just build libgomp and everything it depends on (which probably includes gcc).
Jim