similar to: R-devel, autotools and libtool

Displaying 20 results from an estimated 2000 matches similar to: "R-devel, autotools and libtool"

2011 Sep 06
1
libtool FIXME
Hi, looking on the build scripts, I noticed on configure.ac ## <FIXME> ## Completely disable using libtool for building shlibs until libtool ## fully supports Fortran and C++. ## AC_ARG_WITH([libtool], ## [AS_HELP_STRING([--with-libtool],[use libtool for building shared libraries @ <:@yes@:>@])], ## [use_libtool="${withval}"], ## [use_libtool=yes]) ##
2015 Dec 18
1
Assistance much appreciated
On 2015-12-18 02:29, Simon Urbanek wrote: > Michael, > > I got access to PDP AIX so I can try to replicate your problem. Can you, please, share exactly your setup - AIX version and well as how exactly you installed the compilers (=where from)? I can then try to replicate it. AFAICS there is no official binary for gfortran nor gcc 4.7 so it must be some 3rd party - which could also be a
2001 Oct 17
0
[tbox-l] AIX - Compilation issues with openssh
AIX Toolbox builds openssh with vac.C 5.0.2.0, and configures with very few options: export blibpath="/opt/freeware/lib:/usr/lib:/lib" %configure --prefix=%{prefix} \ --sysconfdir=/etc/ssh \ --libexecdir=%{_libexecdir}/openssh \ --with-ipv4-default \ --with-rsh=/usr/bin/rsh If you extract the openshh.spec file from the SRPM, you can see exactly what we do (you already have it in
2010 Dec 27
0
[LLVMdev] Question of autotools about adding a new target for LLVM
Good morning, Lu. You may do; 1) build and install certain autotools with --prefix=/path/to/your/autotools 2) run the line; PATH=/path/to/your/autotools/bin:$PATH autoconf/AutoRegen.sh Good luck! ...Takumi
2011 Jul 08
3
Bug in CentOS Autotools
You saw my previous message about a strange error. I've tried many times to get autotools working on CentOS. It's the only distro in which I have had problems. How do i bring this to the attention of those who make the decisions? Thanks, John -- John J. Boyer; President, Chief Software Developer Abilitiessoft, Inc. http://www.abilitiessoft.com Madison, Wisconsin USA Developing
2014 Sep 04
2
Autotools help needed
Hi folks! I'm trying to convince autotools to allow me to include fish.c in a C file containing a bunch of unit tests. In order to do that I need to convince it add include path (-I../) to gcc for that particular file (test-quoting.c originally, but dash seems to make troubles as well). I came up with this (snippet from Makefile.am): bin_TESTS = testquoting testquoting_CFLAGS = -I../
2019 Apr 02
0
CMake support for Opus proposal (in addition to Autotools)
Hi Marcus, There seems to be a conflict between the autotools-created config.h.in and the same file added by your patch. Any way you can use use a different name? Cheers, Jean-Marc On 04/02/2019 01:39 AM, Marcus Asteborg wrote: > Hi, > > > Here is a proposal for adding CMake in addition of Autotools. > > > See the attached patch for changes or the pull request here:
2015 Nov 30
2
difference with autotools, cmake and ninja building methods
When I see one book about llvm and choose the building method between autotools, cmake, and ninja building methods, I was confused. Is there any link about this content? Thanks for reply. -- My best regards to you. No System Is Safe! mudongliang
2019 Apr 02
0
CMake support for Opus proposal (in addition to Autotools)
Thanks, it applies now. I think you'd also want to add some (all?) of these files to EXTRA_DIST in Makefile.am, otherwise your cmake files won't be included in release tarballs, which are generate using "make dist". To test, you should try running run "make dist" to generate a tarball yourself. From there, you try building the contents with your cmake files and see if
2010 Dec 25
4
[LLVMdev] Question of autotools about adding a new target for LLVM
Hello all, I am a beginner of LLVM and want to add a new Target for LLVM. I follow the document (http://llvm.org/docs/WritingAnLLVMBackend.html) to modify autotools/configure.ac. However when I type ./AutoRegen.sh There is an error that "Your autoconf was not detected as being 2.60" I download the source of autoconf 2.60 and install it. And there is the other error that "Your
2009 Jan 04
2
DO NOT REPLY [Bug 6011] New: [PATCH] Fix autotools cross-compile support
https://bugzilla.samba.org/show_bug.cgi?id=6011 Summary: [PATCH] Fix autotools cross-compile support Product: rsync Version: 3.0.4 Platform: Other URL: http://blog.flameeyes.eu/s/canonical-target OS/Version: Linux Status: NEW Severity: normal Priority: P3 Component: core AssignedTo:
2018 Dec 05
0
CMake support for Opus in addition to Autotools
Hi, Here is a proposal for adding CMake in addition of Autotools. See attached patch for changes or the pull request here: https://github.com/xiph/opus/pull/100 The CMake scripts are parsing the filelist from Autotools, so only one file list needs to be maintained. With this change the checked in Visual Studio solution can be removed and no longer need to be maintained and updated when
2019 Apr 10
0
CMake support for Opus proposal (in addition to Autotools)
Hi, It looks like cmake currently defaults to no optimization, which I think is a bit unexpected for most users. I don't know how to do that in cmake, but it would be good to default to a "release" build with optimizations. Can you have a patch to do that? Also, is there a way to manually add flags to the compiler (like setting CFLAGS with autotools)? Cheers, Jean-Marc On
2006 Jun 30
0
[fdo] .desktop .menu and icons with autotools
Hi all, I want to manage .desktop, .menu and icon files of a project (Wormux) with autotools. Does it exist some doc about this ? I had a look at Amarok sources and I could install the .desktop with the following in my Makefile.am : xdg_appsdir = $(datadir)/applications xdg_apps_DATA = wormux.desktop Are there some similar variables for icons and .menu files ? Furthermore I saw on some Gnome
2014 Sep 05
2
Re: Autotools help needed
On 09/04/2014 06:49 PM, Pino Toscano wrote: > On Thursday 04 September 2014 18:06:05 Maros Zatko wrote: >> I'm trying to convince autotools to allow me to include fish.c in a C >> file containing a bunch of unit tests. In order to do that I need to >> convince it add include path (-I../) to gcc for that particular file >> (test-quoting.c originally, but dash seems to
2011 Jul 07
0
Strange autotools error
I am using CentOS 5.6, autoconf 2.59 and automake 1.9.6. I run an autogen script which cleans all autotools files and then installs new ones. If the appliction has no dependencies running configure, make and make install works fine. However if it has dependencies I get the messages "Creating Makefile" and "Could not find input file Makefile". I've herd that I need
2011 Jul 08
3
More on CentOS autotools bug
Below is a repost of the message I sent about the strange error message I was getting when trying to build my project on CentOS. I am a software developer and don't have time to compare distros. I am also not an autotools expert. The autotools files in my project were lmade by others. It builds on everything except CentOS. I also don't have the time to build a simple test case. That
2019 Apr 02
2
CMake support for Opus proposal (in addition to Autotools)
Hi, Here is a proposal for adding CMake in addition of Autotools. See the attached patch for changes or the pull request here: https://github.com/xiph/opus/pull/100 The CMake scripts are parsing the filelist from Autotools, so only one file list needs to be maintained. With this change the checked in Visual Studio solution can be removed and no longer need to be maintained and updated when
2007 Apr 12
0
[PATCH] autotools gl_VISIBILITY (Fwd: vorbis-tools release?)
A patch from Bastien Nocera (Fedora) which may be relevant to other xiph projects also: ---------- Forwarded message ---------- From: Bastien Nocera Heya, I just cut an SVN snapshot tarball, and will spin that in our build system in a bit. In the meanwhile, here's a patch that I needed to bootstrap from SVN. @CFLAG_VISIBILITY@ doesn't get replaced in the Makefile.in unless
2018 May 16
0
clang llvm cross compile with autotools
Hi Now I am using clang and llvm to do cross compiling. My target architecture is arm and the host is x86-64. I am trying to compile coreutils and SPEC2006(Anyone who ever has the same experience, please tell me. Really need your help) At the same time, I hope to generate the LLVM IR, which I can write PASS to extract some information. I would also need the dwarf debug information. I briefly