Displaying 20 results from an estimated 10000 matches similar to: "No longer employed by rPath, Inc."
2006 Oct 06
1
problem using libao on OSX 10.4
I installed fink and now I have the /sw/lib, however that didn't fix
my problem. I went as far as to take out the -
Ddlsym=dlsym_auto_underscore out of the configuration files. Now
however the libao package won't build at all and yips about this:
[ukiel:/MP3/OGG/libao-0.8.6] wind% make
Making all in src
Making all in plugins
Making all in oss
make[3]: Nothing to be done for
2013 Feb 05
1
ncdf4 installation problem: undefined symbol [SEC=UNCLASSIFIED]
Hello,
I'm trying to install ncdf4 on RHEL 5.8, R version 2.15.1.
Previously installed is netcdf 3.6.2 from Red Hat, so I've compiled and installed netcdf 4.2.1.1 (with hdf5 and zlib as per install instructions, and also set --enable-netcdf4 option) into /usr/local.
When attempting to install ncdf4 it is failing with:
** testing if installed package can be loaded
Error in
2007 Nov 28
1
autogen.sh fails -> "required file `./config.rpath' not found"
if i run
autogen.sh
on fresh 1.1.beta9 source, it fails @
./autogen.sh
...
100%[====================================>] 154,427 115.09K/s
08:45:56 (114.82 KB/s) - `wiki-export.tar.gz' saved [154427/154427]
configure.in:16: required file `./config.rpath' not found
configure.in:5: installing `./missing'
configure.in:5: installing `./install-sh'
2015 Dec 26
2
[CMake] Hardcoded rpath?
I'm looking at an issue for Homebrew (OS X package manager) where the compiled libc++ tries to load libc++abi at "@rpath/libc++abi.1.dylib", resulting in a dyld error. The issue can be found at https://github.com/Homebrew/homebrew/issues/47149
From what I can tell, this is a result of lines 561-564 of the CMakeLists.txt in the main LLVM repo:
set(CMAKE_BUILD_WITH_INSTALL_RPATH ON)
2015 Aug 01
2
config.rpath?
Building flac git head on OS/2 dies when running "sh /usr/bin/autoreconf
--install --force"
...
configure.ac:32: installing './compile'
configure.ac:35: installing './config.guess'
configure.ac:344: error: required file './config.rpath' not found
configure.ac:35: installing './config.sub'
configure.ac:26: installing './install-sh'
configure.ac:26:
2014 May 30
3
[LLVMdev] [PATCH] Use GCC_INSTALL_PREFIX for rpath if set.
The behavior of automatically detecting libraries installed in the same
prefix feels like magic to me anyway. Perhaps it would be better to have
project-level variables for specifying the path to them individually? The
default value for them could remain as origin/../lib which would keep from
breaking things.
On Thu May 29 2014 at 7:06:17 PM, Chandler Carruth <chandlerc at google.com>
2010 Apr 03
1
hivex: Bug: RPATH in Perl SO
Whilst cleaning up the lintian reports in preparation for the
Debian/Ubuntu hivex package one of the issues is:
E: libhivex-perl: binary-or-shlib-defines-rpath
./usr/lib/perl/5.10.1/auto/Win/Hivex/Hivex.so
/tmp/buildd/hivex-1.2.1/perl/../lib/.libs
I've temporarily dealt with this by using chrpath in the build and a
rule to delete the RPATH from "auto/Win/Hivex/Hivex.so".
I wonder
2017 Oct 09
3
LLVM's use of rpath on macOS
Hi all,
I'm trying to understand why LLVM uses @rpath as the install name in its
dynamic libraries on macOS. This complicates the process of linking against
libLLVM from third-party tools and isn't nearly as common a practice on
macOS as it is on Linux. I tried tracing through history on the LLVM repo
and the main thing I could find was a commit from ages ago saying that the
libraries are
2006 Nov 04
1
Fedora FC6 rpm, howto disable -rpath?
I'd like to contribute xapian to fedora extras. It builds OK, but breaks
one requirement for inclusion. I need to disable rpath. Unfortunately,
I'm not very familiar with the autoconf, automake,... setup, and I can't
seem to find where to disable this. I tried autoreconf, but that didn't
fix it. Can anyone help me?
2003 Dec 08
3
[Bug 770] configure --without-rpath is incomplete
http://bugzilla.mindrot.org/show_bug.cgi?id=770
Summary: configure --without-rpath is incomplete
Product: Portable OpenSSH
Version: -current
Platform: Sparc
OS/Version: Solaris
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo: openssh-bugs at mindrot.org
2006 Oct 04
3
problem using libao on OSX 10.4
Hello,
I built the entire Vorbis kit on my PowerMac G4 running OSX 10.4.6.
I'm having problems however doing anything with the libao package.
Any time I try to use the library to link it errors out with the
following message:
/usr/bin/ld: Undefined symbols:
_dlsym_auto_underscore
collect2: ld returned 1 exit status
If I try to run the ogg123 application I get this:
2009 Nov 17
1
[LLVMdev] rpaths in llvm binaries
> Are you using cmake for building LLVM?
>
> If the answer is yes, please ask on the cmake mailing list.
>
> Usually cmake sets the RPATH when building LLVM as shared objects. But
> on my Linux box it does not set RPATH when building LLVM as static
> libraries.
I do not have cmake installed - and when packaging for NetBSD (IIRC) you need to explicitly tell it that cmake is
2009 Nov 16
2
[LLVMdev] rpaths in llvm binaries
Hello LLVM devs,
I am trying to package llvm for NetBSD. The package checker scripts are complaining about bad rpaths in the binaries. I see that they are relative to the build directory. I have no idea why that would be. Can you explain?
If I build as myself, for testing (e.g.):
$ readelf -d ~/downloads/llvm-2.6/Release/bin/llvm-ar
Dynamic section at offset 0x15af28 contains 25 entries:
2009 Nov 16
0
[LLVMdev] rpaths in llvm binaries
"Larson, Timothy E." <TELarson at west.com> writes:
> Hello LLVM devs,
>
> I am trying to package llvm for NetBSD. The package checker scripts
> are complaining about bad rpaths in the binaries. I see that they are
> relative to the build directory. I have no idea why that would be.
> Can you explain?
Are you using cmake for building LLVM?
If the answer is
2014 May 29
3
[LLVMdev] [PATCH] Use GCC_INSTALL_PREFIX for rpath if set.
This way, an LLVM compiled after setting GCC_INSTALL_PREFIX will work correctly
if you don't want to install LLVM into the GCC_INSTALL_PREFIX.
---
CMakeLists.txt | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 9ec3e33..c85a028 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -450,7 +450,12 @@ if (APPLE)
2018 Jan 09
1
barplot_add=TRUE
Dear Gerrit
Thanks a lot. "rbind" seems to be the right function. Unfortunately there is a shift in the x-axis (see pdf). There are 52 trapcatch values each, m and w, but m$trapcatch and w$trapcatch are shifted up to x-value 60.
The follow-up lines for temp and humidity are fine.
Thanks
Sibylle
setwd("~/Desktop/DatenLogger2017") # am Mac sks
trap =
2012 Aug 05
2
[Bug 2030] New: build of 6.0p1 fails @ "/usr/bin/ld: unrecognized option '-Wl,-rpath,/usr/local/ssl/lib64"
https://bugzilla.mindrot.org/show_bug.cgi?id=2030
Priority: P5
Bug ID: 2030
Assignee: unassigned-bugs at mindrot.org
Summary: build of 6.0p1 fails @ "/usr/bin/ld: unrecognized
option '-Wl,-rpath,/usr/local/ssl/lib64"
Severity: major
Classification: Unclassified
OS: Linux
Reporter:
2013 Sep 06
1
Bug#721999: xen: FTBFS: dpkg-shlibdeps: error: couldn't find library libxenstore.so.3.0 needed by debian/libxen-4.3/usr/lib/libxenlight-4.3.so (ELF format: 'elf32-i386'; RPATH: '/usr/lib')
Source: xen
Version: 4.3.0-1
Severity: serious
Justification: FTBFS
Hi
New uploaded xen 4.3.0-1 FTBFS, see [1] for build log for i386.
[1] https://buildd.debian.org/status/fetch.php?pkg=xen&arch=i386&ver=4.3.0-1&stamp=1378426577
Regards,
Salvatore
2009 Jul 26
0
LIBS='.. -Wl,-rpath ..' on Linux
Hi.
My system image is built on amd64 using Gentoo catalyst, and my
target is x86. This works really well.
However, OpenSSH configure adds -Wl,-rpath -Wl,/usr/lib to LIBS
during build, which then causes a problem when trying to run sftp.
(sftp has been linked with libedit, and /usr/lib/libedit.so exists
but is a linker script that points to /lib/libedit.so. This linker
script confuses ld.so
2009 Sep 24
2
P-value and R-squared variable selection criteria
Hi R community
I have a question. I'll explain my situation. I have to build a climate model to obtain monthly and annual temperature from 2004 to 2008 from a specif area in Almeria (Spain). To build this climate model, I will use Multiple regression. My dependant variable will be monthly and annual temperature and independant variables will be Latitute, Longitude and Altitude and I will work