make -j2 error in ecpg/pgtypeslib in current GIT

From: Boszormenyi Zoltan <zb(at)cybertec(dot)at>
To: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: make -j2 error in ecpg/pgtypeslib in current GIT
Date: 2011-01-27 10:21:44
Message-ID: 4D414738.8050308@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi,

I get reproducible "make -j2" compile error in ecpg/pgtypeslib.
The problem is that after this below is executed:

rm -f pgstrcasecmp.c && ln -s ../../../../src/port/pgstrcasecmp.c .

the compilation of pgstrcasecmp.c doesn't happen and this fails:

ar crs libpgtypes.a numeric.o datetime.o common.o dt_common.o timestamp.o interval.o
pgstrcasecmp.o
ar: pgstrcasecmp.o: No such file or directory

The above happens if I run "make -j2" from the toplevel directory
after ./configure. The second run passes.

With "make clean ; make -j2" in src/interfaces/ecpg the same error
occurs again.

If I run "make" without "-j2" then the compile failure doesn't happen.

The system is an uptodate Fedora 14.

Best regards,
Zoltán Böszörményi

--
----------------------------------
Zoltán Böszörményi
Cybertec Schönig & Schönig GmbH
Gröhrmühlgasse 26
A-2700 Wiener Neustadt, Austria
Web: http://www.postgresql-support.de
http://www.postgresql.at/

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Heikki Linnakangas 2011-01-27 10:38:52 Re: Query Optimizer + Parallel Operators
Previous Message JonY 2011-01-27 10:19:37 Re: [Mingw-users] What's the relationship between GCC and MinGW