Re: Libtool, rpath, and libGL.so

2011-12-07 Thread Adam Mercer
On Wed, Dec 7, 2011 at 23:26, Peter O'Gorman pe...@pogma.com wrote: Does anyone want to try again? http://lists.gnu.org/archive/html/libtool-patches/2010-11/msg00027.html I only have red hat like distros, so if someone could update the patch and look at other distros that'd be great. I can

Re: Libtool, rpath, and libGL.so

2011-11-29 Thread Adam Mercer
On Mon, Nov 28, 2011 at 23:30, Andy Spencer andy753...@gmail.com wrote: This seems to be caused by libtool adding a -rpath flag which forces the application to use the /usr/lib64 version provided by mesa even though ld.so.conf has been properly configured to use the nvidia version. I ran into

Re: linking problems on SL6

2011-11-23 Thread Adam Mercer
On Wed, Nov 23, 2011 at 08:52, Peter O'Gorman pe...@pogma.com wrote: I'm not sure if we ever looked for what distros use what layout for multilibs, and how to detect them. There was a patch somewere which was slow, but ended up correct, using ldconfig. I'll look for it again. Thanks, let me

Re: linking problems on SL6

2011-11-22 Thread Adam Mercer
On Mon, Nov 21, 2011 at 15:39, Peter O'Gorman pe...@pogma.com wrote: Glad it works around it. The problem is libtool brokenness, most vendors patch around it in their packaged libtool, e.g.

Re: linking problems on SL6

2011-11-21 Thread Adam Mercer
On Mon, Nov 21, 2011 at 12:21, Peter O'Gorman pe...@pogma.com wrote: Peter Are these -Wl,-rpath flags coming from libtool? They seem to be there already on the libtool command line. Could you post this snippet of your makefile.am, please? I am not setting these myself and they don't seem to

linking problems on SL6

2011-11-18 Thread Adam Mercer
Hi In building a development snapshot of one of my projects, to a custom path, on SL6 I am running into what appears to be a linking problem. The libtool command used to link the library is as follows: libtool: link: gcc -std=gnu99 -shared -fPIC -DPIC .libs/Aggregation.o .libs/FrameCache.o

potential linking issue with Xcode-4.2 on Lion

2011-10-17 Thread Adam Mercer
Hi I testing some software I maintain using the recently release Xcode-4.2 on Mac OS X 10.7.2, and am running into the follow error during link: /bin/sh ../../../libtool --tag=CC --mode=link gcc -std=gnu99 -g -O2 -g3 -O4 -Wall -W -Wmissing-prototypes -Wstrict-prototypes -Wshadow

Re: potential linking issue with Xcode-4.2 on Lion

2011-10-17 Thread Adam Mercer
On Mon, Oct 17, 2011 at 17:07, Peter O'Gorman pe...@pogma.com wrote: Great, please file a radar with apple for it. Filed. #10299475 Cheers Adam ___ https://lists.gnu.org/mailman/listinfo/libtool

libtool and Cuda

2010-09-01 Thread Adam Mercer
On Tue, Aug 31, 2010 at 14:12, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: Is there any documentation for this anywhere, I can't find anything in the online manual nor info document and a quick Google search only leads me to the release notes for 2.2.8? Well, the support is basically

Re: libtool and Cuda

2010-09-01 Thread Adam Mercer
On Wed, Sep 1, 2010 at 13:44, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: Ralf Do you know how?  (Because that knowledge will be needed when implementing this.) Not yet, a new programmer has just been employed by a group in our collaboration to work on this. He's got a few ideas but needs

Re: GNU Libtool 2.2.8 released (stable)

2010-08-31 Thread Adam Mercer
On Fri, Jun 4, 2010 at 15:44, Gary V. Vaughan g...@gnu.org wrote: Hi  - Initial support for the Cuda Compiler Driver on GNU/Linux. Is there any documentation for this anywhere, I can't find anything in the online manual nor info document and a quick Google search only leads me to the release

Re: GNU Libtool 2.2.7b released (2.2.8 release candidate).

2010-05-21 Thread Adam Mercer
On Thu, May 20, 2010 at 19:22, Gary V. Vaughan g...@gnu.org wrote: Hi The Libtool Team is pleased to announce release candidate 2.2.7b of GNU Libtool.  If there are no serious deficiencies reported in this release, it will be renumbered as 2.2.8 and re-released (otherwise, we'll fix any

Re: GNU Libtool 2.2.7b released (2.2.8 release candidate).

2010-05-21 Thread Adam Mercer
On Fri, May 21, 2010 at 14:01, Gary V. Vaughan g...@gnu.org wrote: Gary In the end AC_PROG_CXX is not very time consuming, so I'd recommend something more along the lines of (untested - from memory): AC_PROG_CXX AM_CONDITIONAL([BUILD_BOINC], [test x${boinc} = xtrue]) and then in

Re: When to bump library api version (current)

2010-05-20 Thread Adam Mercer
On Thu, May 20, 2010 at 13:37, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: For what it's worth, I wouldn't treat this as an incompatible API bump. I would mention it to my users though, because when they use function pointers and assign your library function, the change will show up. Thanks

When to bump library api version (current)

2010-05-19 Thread Adam Mercer
Hi We are coming up for a new release of one of the libraries I maintain and I'm not sure whether the library api version needs bumping (specifically current). The only API change is that the function below: double calculate_ligo_snr_from_strain( REAL4TimeVectorSeries *strain,

Re: When to bump library api version (current)

2010-05-19 Thread Adam Mercer
On Wed, May 19, 2010 at 23:36, Daniel Herring dherr...@tentpost.com wrote: Daniel ISTM that this is not an ABI change; the addition of const only affects the code being called, and in a manner compatible with the non-const version (assuming calling code did not expect this parameter to be

Re: use of -flat_namespace on darwin

2009-12-23 Thread Adam Mercer
On Wed, Dec 23, 2009 at 16:30, Peter O'Gorman pe...@pogma.com wrote: In one of our projects we are experiencing a problem which seems to be related to the fact that the -flat_namespace option is not being passed to the linker, looking into why this is the case I see the following code in

use of -flat_namespace on darwin

2009-12-22 Thread Adam Mercer
Hi In one of our projects we are experiencing a problem which seems to be related to the fact that the -flat_namespace option is not being passed to the linker, looking into why this is the case I see the following code in libtool.m4: case $host_os in rhapsody* | darwin1.[[012]])

Re: autoreconf always calling libtool with --copy option on Ubuntu 9.10

2009-12-15 Thread Adam Mercer
On Tue, Dec 15, 2009 at 02:31, Paolo Bonzini bonz...@gnu.org wrote: It's an Ubuntu-specific (maybe Debian-specific) patch. Thanks I'll follow this up with them. Cheers Adam ___ http://lists.gnu.org/mailman/listinfo/libtool

autoreconf always calling libtool with --copy option on Ubuntu 9.10

2009-12-14 Thread Adam Mercer
Hi I'm running into a strange problem with libtool when running autoreconf on one of my projects under Ubuntu 9.10. autoreconf always seem to run libtoolize with the copy option, even though there in no need for it to: $ autoreconf -v autoreconf: Entering directory `.' autoreconf: configure.ac:

Re: revisiting condor and libtool

2009-12-01 Thread Adam Mercer
On Tue, Dec 1, 2009 at 00:26, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: Yes, the condor_compile script puts the quotes all in the wrong places. To work around it, use AC_CONFIG_HEADERS([config.h]) and include that from your code.  Your build setup looks ok otherwise. Thanks, using

Re: revisiting condor and libtool

2009-12-01 Thread Adam Mercer
On Tue, Dec 1, 2009 at 12:54, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: Ralf please trim stuff that you don't refer to from replies, thanks. Sorry, I usually do but forgot last time. BTW, you should usually include config.h as very first header, because it can influence the behavior of

Re: revisiting condor and libtool

2009-12-01 Thread Adam Mercer
On Tue, Dec 1, 2009 at 14:45, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: Ralf As developer, add it to AM_LDFLAGS.  You can AC_SUBST([AM_LDFLAGS]) from configure.ac if you need it in multiple Makefile.am files.  Note that target_LDFLAGS override AM_LDFLAGS unless you add the latter to the

revisiting condor and libtool

2009-11-30 Thread Adam Mercer
Hi A while ago I posted a question regarding problems I was having with updating a project, that is built for the condor workflow management system (http://www.cs.wisc.edu/condor/), to the latest version of libtool: http://lists.gnu.org/archive/html/libtool/2009-05/msg00023.html unfortunately I

Re: revisiting condor and libtool

2009-11-30 Thread Adam Mercer
On Tue, Dec 1, 2009 at 00:26, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: Yes, the condor_compile script puts the quotes all in the wrong places. To work around it, use AC_CONFIG_HEADERS([config.h]) and include that from your code.  Your build setup looks ok otherwise. Thought so. Below's

Re: segfault on library linking

2009-08-28 Thread Adam Mercer
On Fri, Aug 28, 2009 at 01:34, Mike Frysingervap...@gentoo.org wrote: this crash isnt coming from libtool.  you should ask on one of the apple/os x forums about it. Thanks, I will Cheers Adam ___ http://lists.gnu.org/mailman/listinfo/libtool

Re: Damien Lespiau » shave: making the auto tools output sane

2009-06-10 Thread Adam Mercer
On Wed, Jun 10, 2009 at 00:25, Vincent Torrivto...@univ-evry.fr wrote: Is it possible to add AM_SILENT_RULES only when automake version is = 1.11, that is is there a good way to retrieve the version of automake in configure.ac ? Something like: AM_INIT_AUTOMAKE(1.6 dist-bzip2) if test

Re: Damien Lespiau » shave: making the auto tools output sane

2009-06-09 Thread Adam Mercer
On Tue, Jun 9, 2009 at 19:25, Bob Friesenhahnbfrie...@simple.dallas.tx.us wrote: Is this some sort of Automake 1.11 look-alike?  Why do this if Automake does it already?  Time to wake up and smell the coffee ... Wow, I didn't realise automake could do this. How is it configured? I must not be

Re: Damien Lespiau » shave: making the auto tools output sane

2009-06-09 Thread Adam Mercer
On Tue, Jun 9, 2009 at 20:51, Adam Mercerramer...@gmail.com wrote: Wow, I didn't realise automake could do this. How is it configured? I must not be googling properly as I can't find anything. Never mind, found it. Cheers Adam ___

Re: condor_compile and libtool

2009-05-13 Thread Adam Mercer
On Wed, May 13, 2009 at 13:32, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: What I can gather about Condor on GNU/Linux is that it used to support static libraries only, cf. this old manual: http://www.cs.wisc.edu/condor/manual/v6.2/1_4Current_Limitations.html. So you might want to try  

Re: condor_compile and libtool

2009-05-11 Thread Adam Mercer
On Mon, May 11, 2009 at 01:08, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: config.status: creating Makefile sed: file ./confstatiT3775/subs-2.sed line 40: unterminated `s' command and the resulting Makefile is empty. This is the only error and the project builds and links fine when not

Re: condor_compile and libtool

2009-05-11 Thread Adam Mercer
On Mon, May 11, 2009 at 16:36, Ralf Wildenhues ralf.wildenh...@gmx.de wrote: * Adam Mercer wrote on Mon, May 11, 2009 at 08:11:05PM CEST: This is building on CentOS5, which comes with autoconf-2.59, I built a distribution on my laptop which has autoconf-2.63 and then configure worked, however

condor_compile and libtool

2009-05-10 Thread Adam Mercer
Hi Does anyone have any experience with libtool based projects and condor_compile (for the Condor workflow management system http://www.cs.wisc.edu/condor/)? I would like to update the libtool in one of our projects to the latest 2.2.6a release but I am running into strange problems when

Re: shared library version info query

2009-05-09 Thread Adam Mercer
On Thu, May 7, 2009 at 23:09, Adam Mercer ramer...@gmail.com wrote: If I understanding the versioning correctly, shouldn't there also be a libFrame.1.0.0.dylib? Is there anything I'm missing, or not understanding? It appears that I wasn't understanding this correctly as on Darwin it appears

shared library version info query

2009-05-07 Thread Adam Mercer
Hi I am in the process if rewriting the build system for a project I've been working on and am noticing strange behaviour with the shared library version info, I have the following in my projects configure.ac for setting the shared library version info: # set library api info AC_SUBST([LIBAPI],