1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 <2005> 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 <2005> 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: Channel Archiver/ Extension Build Question |
From: | Ralph Lange <[email protected]> |
To: | John Dobbins <[email protected]> |
Cc: | Kay-Uwe Kasemir <[email protected]>, [email protected] |
Date: | Thu, 10 Nov 2005 11:59:23 +0100 |
Hi John, To me it does actually look like there's one "make" missing in the extensions/configure subdirectory. Remember that running "make" inside the configure directory creates Makefile snippets that get included during all make runs under this TOP. These Makefile snippets contain (among other things) search path definitions for includes and libraries. The pearl script that creates the library path definitions will only add directories that actually contain libraries - this is to avoid adding countless empty directories to the search paths. If you created librecIoc.a in base after you ran make in extensions/configure, your Makefile snippets might not contain the correct library location within base. As a result, make will try to find librecIoc.a only locally, i.e. under this TOP directory. It's not there, and cannot be created locally, so make complains correctly about *** No rule to make target `../../../../lib/linux-x86//librecIoc.a General rule of thumb: If a make run yields errors that look like it's trying to find a library locally which should be found elsewhere ...
Good luck! Ralph Kay-Uwe Kasemir wrote: Hi: |