deps-release broken on archlinux trunk build

For discussion of ports to POSIX based systems, especially using GNUStep.

Moderators: winston, another_commander, Getafix

Post Reply
User avatar
Lone_Wolf
---- E L I T E ----
---- E L I T E ----
Posts: 615
Joined: Wed Aug 08, 2007 10:59 pm
Location: Netherlands

deps-release broken on archlinux trunk build

Post by Lone_Wolf »

trunk rev 75e511b319d1e0a58276c358ae96d46399861204

Running

Code: Select all

  source /usr/share/GNUstep/Makefiles/GNUstep.sh
  make -f Makefile deps-release \
    OBJCFLAGS+="-Wno-format-security"
gives

Code: Select all

cd deps/Linux-deps//lib_linker && ./make_so_links.sh && cd ../../../.. 
/bin/sh: line 1: cd: deps/Linux-deps//lib_linker: No such file or directory
make: *** [Makefile:135: deps-release] Error 1
The path there is wrong and should be deps/Linux-deps/x86_64/lib_linker
A possible cause is HOST_ARCH being empty.

Manually performing the steps listed for deps-release hasn't helped to get oolite to use the provided deps.
OS : Arch Linux 64-bit - rolling release

From: The Netherlands, Europe

OXPs : My user page
(needs updating)

Retired, occasionally active
User avatar
mcarans
---- E L I T E ----
---- E L I T E ----
Posts: 374
Joined: Sun Jun 20, 2010 6:00 pm

Re: deps-release broken on archlinux trunk build

Post by mcarans »

The setting of HOST_ARCH in the makefile is broken and can be fixed as follows:

HOST_ARCH := $(shell gnustep-config --variable=GNUSTEP_HOST_CPU)
Post Reply