similar to: [LLVMdev] C Library problem in Debian

Displaying 20 results from an estimated 50000 matches similar to: "[LLVMdev] C Library problem in Debian"

2006 Mar 03
1
Fwd: Re: calling R's library using C
Sorry, forgot to switch the header to the R group.... --- Globe Trotter <itsme_410 at yahoo.com> wrote: > Date: Thu, 2 Mar 2006 19:35:21 -0800 (PST) > From: Globe Trotter <itsme_410 at yahoo.com> > Subject: Re: [R] calling R's library using C > To: Dirk Eddelbuettel <edd at debian.org> > > Hi, Dirk: > > Thanks for all the help. I thought I would
2006 Mar 02
1
calling R's library using C
Hi, Thanks, everyone for all the help! So, here is my calling function in C (called test.c): #include<stdio.h> #include<stdlib.h> #include<Rmath.h> int main(void) { printf("%f \n",pchisq(2.,7., 1, 0)); printf("%f \n",pnchisq(2.,7.,0., 1, 0)); return EXIT_SUCCESS; } I compile using: gcc test.c -I/usr/lib/R/include
2009 Mar 27
2
[LLVMdev] LLVM-2.5 WinXP/Cygwin can't find puts() for the hello.c in GettingStarted document
I am using LLVM 2.5 release, together with llvm-gcc4.2-2.5. For the hello.c demo testing found close to the end of the GettingStarted document: #include <stdio.h> int main() { printf("hello world\n"); return 0; } Following the instructions: obtaining the bc file: /llvm-gcc -O3 -emit-llvm hello.c -c -o hello.bc/ running through lli: * */lli hello.bc/ I got this
2020 Feb 13
1
[nbdkit PATCH v3] vddk: Drive library loading from libdir parameter.
From: "Richard W.M. Jones" <rjones@redhat.com> Do not use LD_LIBRARY_PATH to locate the VDDK library. Setting this always causes problems because VDDK comes bundled with broken replacements for system libraries, such as libcrypto.so and libstdc++.so. Two problems this causes which we have seen in the real world: (1) User does ‘export LD_LIBRARY_PATH=vmware-vix-disklib-distrib’
2012 May 10
1
回复: guestfs_mount_local* api undefined symbols
Thank you Rich, I checked the version and found that it printed an old 1.17.17 version which was deployed before. But I remembered i did check the version in guestfish shell and it said 1.17.40 before that?then i totally ignored the fact i had another version involved. I`ve changed the LD_LIBRARY_PATH and the "undefined symbol" error disappeared.But some "inspection API not
2006 Jul 05
0
[Bug 1206] configure: error: *** 'ar' missing, please install or fix your $PATH
http://bugzilla.mindrot.org/show_bug.cgi?id=1206 ------- Comment #5 from papadg00 at yahoo.com 2006-07-06 07:38 ------- Created an attachment (id=1155) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1155&action=view) Your OpenSSL headers do not match your library. I've installed zlib 1.2.3 for Solaris 10 x86. Build openssl 0.9.8b and installed under /usr/local. Attempting to
2006 Jul 05
0
[Bug 1206] configure: error: *** 'ar' missing, please install or fix your $PATH
http://bugzilla.mindrot.org/show_bug.cgi?id=1206 ------- Comment #4 from papadg00 at yahoo.com 2006-07-06 07:22 ------- Created an attachment (id=1154) --> (http://bugzilla.mindrot.org/attachment.cgi?id=1154&action=view) Your OpenSSL headers do not match your library. I've installed zlib 1.2.3 for Solaris 10 x86. Build openssl 0.9.8b and installed under /usr/local. Attempting to
2012 Jan 10
1
[PATCH] Prepend local library path to LD_LIBRARY_PATH for tests, instead of replacing it
Overwriting LD_LIBRARY_PATH broke some tests when running with fakeroot. --- align/Makefile.am | 2 +- cat/Makefile.am | 2 +- clone/Makefile.am | 2 +- df/Makefile.am | 2 +- edit/Makefile.am | 2 +- fish/Makefile.am | 2 +- haskell/Makefile.am | 2 +- ocaml/Makefile.am |
2017 May 16
0
r-cran-rjava dependencies on debian jesse, library(rJava) fails when default-jre is missing
On 8 May 2017 at 15:39, Vaidotas Zemlys wrote: | Hi, | | Dirk Eddelbuettel advised me to write here. Here is my original letter to him: | | I would like to enquire about package r-cran-rjava on Debian jesse. It seems that if default-jre package is not installed, but openjdk-7-jre is installed, then library(rJava) in R fails. I?ve been bitten by this today and I wonder whether this an issue of
2010 Nov 25
0
[LLVMdev] Question regarding the alias analysis chaining behaviour
[+llvmdev] Rajeshwar Vanka wrote: > -----Original Message----- > From: Nick Lewycky [mailto:nicholas at mxc.ca] > Sent: Wednesday, November 24, 2010 3:51 PM > To: dirac > Cc: llvmdev at cs.uiuc.edu > Subject: Re: [LLVMdev] Question regarding the alias analysis chaining > behaviour > > dirac wrote: >> Hi, >> I am using LLVM 2.4 on a Linux RHEL5 machine.
2020 Feb 18
0
[nbdkit PATCH v7 2/2] vddk: Drive library loading from libdir parameter.
From: "Richard W.M. Jones" <rjones@redhat.com> Do not use LD_LIBRARY_PATH to locate the VDDK library. Setting this always causes problems because VDDK comes bundled with broken replacements for system libraries, such as libcrypto.so and libstdc++.so. Two problems this causes which we have seen in the real world: (1) User does ‘export LD_LIBRARY_PATH=vmware-vix-disklib-distrib’
2020 Feb 17
0
[nbdkit PATCH v5 4/4] vddk: Drive library loading from libdir parameter.
From: "Richard W.M. Jones" <rjones@redhat.com> Do not use LD_LIBRARY_PATH to locate the VDDK library. Setting this always causes problems because VDDK comes bundled with broken replacements for system libraries, such as libcrypto.so and libstdc++.so. Two problems this causes which we have seen in the real world: (1) User does ‘export LD_LIBRARY_PATH=vmware-vix-disklib-distrib’
2020 Feb 13
0
[PATCH nbdkit 2/2] vddk: Drive library loading from libdir parameter.
Do not use LD_LIBRARY_PATH to locate the VDDK library. Setting this always causes problems because VDDK comes bundled with broken replacements for system libraries, such as libcrypto.so and libstdc++.so. Two problems this causes which we have seen in the real world: (1) User does ‘export LD_LIBRARY_PATH=vmware-vix-disklib-distrib’ and that breaks lots of ordinary utilities on their system. (2)
2017 May 17
0
r-cran-rjava dependencies on debian jesse, library(rJava) fails when default-jre is missing
On 17 May 2017 at 08:46, Vaidotas Zemlys wrote: | Hi, | | > Le 17 mai 2017 ? 00:42, Dirk Eddelbuettel <edd at debian.org> a ?crit : | > | > | > On 8 May 2017 at 15:39, Vaidotas Zemlys wrote: | > | Hi, | > | | > | Dirk Eddelbuettel advised me to write here. Here is my original letter to him: | > | | > | I would like to enquire about package r-cran-rjava on
2013 Jun 19
2
[LLVMdev] ARM struct byval size > 64 triggers failure
I missed that the testing case is returning a struct. You are right in VARegSaveSize. For callee: sub sp, sp, #16 push {r11, lr} mov r11, sp sub sp, sp, #8 str r3, [r11, #20] str r2, [r11, #16] str r1, [r11, #12] ldr r1, [r11, #76] The beginning of the input struct @ sp_at_entry - 16 - 8 + 12 = sp_at_entry -12 # of leftover bytes 67-12 = 55 r11+76 is @ sp_at_entry - 24 + 76 = sp_at_entry
2020 Feb 13
1
Re: [PATCH nbdkit 2/2] vddk: Drive library loading from libdir parameter.
On 2/13/20 8:01 AM, Richard W.M. Jones wrote: > Do not use LD_LIBRARY_PATH to locate the VDDK library. Setting this > always causes problems because VDDK comes bundled with broken > replacements for system libraries, such as libcrypto.so and > libstdc++.so. Two problems this causes which we have seen in the real > world: > > (1) User does ‘export
2002 Jul 18
1
debian potato cvs wine segfaults on compile
Hi, I'm trying to compile Wine cvs on this system: debian potato libc6 2.1.3 gcc 2.95.3 (upgraded) binutils 2.12.2 (upgraded) X 4.2 (upgraded) Nvidia drivers from Nvidias website (libGL 1.3) I get the following errors, I've tryied to compile this several times with tools/wineinstall and also 'configure && make depend && make', with and without these CLFAGS
2013 Jul 29
1
[LLVMdev] llvm-g++ 4.6.4 unable to compile simple shared library on Ubuntu 12.04 x86_64
Hi, I am trying to release a Makefile for building my company's software that will be flexible enough to use the llvm suite of compilers to build shared libraries for talking to USB peripherals. The problem that I am having is that while I am able to build a shared library using llvm-gcc , the llvm-g++ compiler is giving me error messages saying " relocation R_X86_64_PC32 against
2003 Dec 14
1
compile error with C code and standalone R math C library
Dear People, I just went back to an old piece of C code. On trying to compile it with the R math standalone C library I got the following error. Can anyone enlighten me what I am doing wrong, if anything? C file (rr-sa.c) follows. I'm on Debian sarge. I'm running R version 1.8.1. Gcc is version 3.3.1. Thanks in advance. Faheem.
2013 Jun 25
2
[PATCH] also override library path for hotplug scripts
Overriding PATH but not LD_LIBRARY_PATH is bogus, as it may result in the use of mismatched binaries and libraries. Signed-off-by: Jan Beulich <jbeulich@suse.com> --- a/tools/hotplug/Linux/xen-hotplug-common.sh +++ b/tools/hotplug/Linux/xen-hotplug-common.sh @@ -31,6 +31,7 @@ dir=$(dirname "$0") exec 2>>/var/log/xen/xen-hotplug.log export