#5473 closed defect (fixed)
Building without-pgconfig errors out and goes in an infinite loop
Reported by: | robe | Owned by: | robe |
---|---|---|---|
Priority: | blocker | Milestone: | PostGIS 3.4.0 |
Component: | utils/loader-dumper | Version: | master |
Keywords: | Cc: |
Description
When I build with ./configure --without-pgconfig on my mingw64 setup
It errors:
make[374]: *** [Makefile:28: all] Error 2 make[374]: Leaving directory '/projects/postgis/postgis-git/raster' : make[1]: Leaving directory '/projects/postgis/postgis-git/raster' make: *** [GNUmakefile:25: all] Error 1
I'm thinking this might be happening on woodie too why it keeps crashing on the tools even when the tools agent job was running on the woodie-server. I saw the server docker process die. I tried moving the tools job to dronie, and she didn't like it either.
I'm going to try some other machines to see if the behavior repeats.
I've also attached one log file I managed to pull from woodie, before it kicked the can. Looks like the same thing
Attachments (2)
Change History (10)
by , 15 months ago
Attachment: | postgis-postgis-788-build.log added |
---|
comment:1 by , 15 months ago
For contrast attached is a log file of one of Woodie's tool runs from when I called 3.4.0rc1. So it was working at rc1, so something most have changed in past week to break this.
by , 15 months ago
Attachment: | postgis-postgis-764-build-rc1-working.log added |
---|
Woodie tools run at 3.4.0rc1 was fast and working
comment:2 by , 15 months ago
Owner: | changed from | to
---|
comment:3 by , 15 months ago
strk,
Maybe it was the fix you tried to make with ordering of items in #5467
comment:4 by , 15 months ago
Okay I see the problem. My generated makefile when I'm building without-pgconfig
looks like this:
all: $(MAKE) corelib $(MAKE) $(MAKE) rtloader $(MAKE)
because you changed the code to
all: $(MAKE) @RT_CORE_LIB@ $(MAKE) @RT_PG_LIB@ $(MAKE) @RT_LOADER@ $(MAKE) @RT_POSTGIS_SQL@
and there is no RT_PG_LIB or RT_POSTGIS_SQL if you are building --without-pgconfig
comment:5 by , 15 months ago
Summary: | Building without-pgconfig errors out and might be going in an infinite loop → Building without-pgconfig errors out and goes in an infinite loop |
---|
comment:6 by , 15 months ago
Owner: | changed from | to
---|
Woodie tool build