search for: libb

Displaying 16 results from an estimated 16 matches for "libb".

Did you mean: lib
2016 May 13
2
Creating and using "shared library" of LLVM IR
...m + 1; } file: b.c ---------- int f_a(int); int f_b(int n) { return f_a(n); } file: driver.c -------------- int f_b(int); int main(int argc, char *argv[]) { return f_b(argc); } $ clang -flto -Wl,-plugin-opt=emit-llvm -shared -o libA.so a.c $ clang -flto -Wl,-plugin-opt=emit-llvm -shared -o libB.so b.c -L. -lA $ clang -flto -Wl,-plugin-opt=emit-llvm -o driver driver.c -L. -lA -lB All the .so files here are obviously now bitcode files. The last command fails with a "multiple definition" error because both libB.so and libA.so contain a definition for f_a. My question is: Is there...
2008 Nov 18
1
Getting error ld: fatal: symbol `__SUNW_dof'' is multiply-defined:
...". What is the solution for this? Here is my simulation of real world problem in sample files. $gmake CC -mt -xtarget=ultra -g -xs -c -o a.o a.cpp dtrace -G -32 -s 1.d a.o -o 1.o CC -xar -o liba.a a.o 1.o CC -mt -xtarget=ultra -g -xs -c -o b.o b.cpp dtrace -G -32 -s 2.d b.o -o 2.o CC -xar -o libb.a b.o 2.o CC -G -o libc.so a.o b.o 1.o 2.o -mt -norunpath ld: fatal: symbol `__SUNW_dof'' is multiply-defined: (file 1.o type=OBJT; file 2.o type=OBJT); ld: fatal: File processing errors. No output written to libc.so gmake: *** [all] Error 1 $cat Makefile all:: CC -mt -xta...
2020 Sep 24
2
ORC JIT - Can modules independently managed with one LLJIT instance? + problems with ExecutionSession.lookup
Hey Lang, I would be really happy to only have one LLJIT instance and using multiple JITDylibs. However… it seems like that I don’t know enough to use them. So I wonder… 1. When I add Module A to JITDylib A and Module B to JITDylib B – where will those look for undefined symbols? Will Module A for example: will it only search itself and the MainDylib? Or would it also search in JITDylib B?
2012 Mar 20
0
[LLVMdev] Runtime linker issue wtih X11R6 on i386 with -O3 optimization
...or the length of this email. Code was compiled on OpenBSD with clang 3.0-release. ======================================================================== With -O0 which works as X expects: ======================================================================== $ make clean rm -f a.o b.o liba.so libb.so app $ make CFLAGS=-O0 clang -O0 -fpic -c a.c clang -shared -o liba.so a.o clang -O0 -fpic -c b.c clang -shared -o libb.so b.o clang -O0 -fpic app.c -o app $ ./app opening a opening b clang and X sitting in a tree :) The relevant bits of objdump -R $ objdump -R liba.so | grep ex_func 2000210c R...
2006 Nov 16
3
Newbie problem ... Forest plot
...lled A.csv) (12 results named Group1, Group2, Group3, etc...) odds ratios, 2 file (called B.csv) 12 corresponded errors. How to import that data into R and make forest plot like I saw inside help file Rmeta and meta with included different font colors and names trough X and Y axis. I know for meta libb ... out <- metagen(name1,name2) plot(out,xlab="abcd") .... But I need for my data to look like this? (copy from help file rmeta) library(rmeta) op <- par(lend="square", no.readonly=TRUE) data(catheter) a <- meta.MH(n.trt, n.ctrl, col.trt, col.ctrl, data=catheter,...
2007 Apr 06
1
Post unification
...e place, all independent or in one place? 4. Compiz core and compiz-extras tarball is using gconf schemas, while compiz-plugins-beryl-premerge is using bcop options for settings schemas. 5. In Compiz translated strings are part of gconf schemas, in beryl we fetched the strings from the plugin and libberylsettings handled conveying translated strings to the frontend, how will it be handled now? 6. libbs for ini, gconf and kconfig backends for settings frontends is in works, I am not sure of its status. 7. I have a vague idea that someone is working on a settings frontend, not sure of the status...
2009 Oct 15
8
sub-optimal ZFS performance
Hello, ZFS is behaving strange on a OSOL laptop, your thoughts are welcome. I am running OSOL on my laptop, currently b124 and i found that the performance of ZFS is not optimal in all situations. If i check the how much space the package cache for pkg(1) uses, it takes a bit longer on this host than on comparable machine to which i transferred all the data. user at host:/var/pkg$ time
2011 Nov 25
6
Use RbConfig instead of obsolete and deprecated Config
...ror when using webgen: /home/dams/opt/ruby/gems/webgen-0.5.14/lib/webgen/cli/utils.rb:10: Use RbConfig instead of obsolete and deprecated Config. /usr/lib/ruby/1.9.1/psych.rb:154:in `parse'': (<unknown>): couldn''t parse YAML at line 21 column 9 (Psych::SyntaxError) from /usr/libb/ruby/1.9.1/psych.rb:154:in `parse_stream'' from /usr/lib/ruby/1.9.1/psych.rb:125:in `parse'' from /usr/lib/ruby/1.9.1/psych.rb:112:in `load''loadfrom /home/dams/opt/ruby/gems/webgen-0.5.14/lib/webgen/website.rb:358:in `read_config_file'' from /home/dams/opt/ruby/gems...
2012 Oct 23
0
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
Hi Jack, > It is interesting though that LLVMPolly.so shows the linkage... > > /sw/opt/llvm-3.2/lib/LLVMPolly.so: > /sw/lib/libisl.10.dylib (compatibility version 11.0.0, current version 11.0.0) > /sw/lib/gmp5/libgmp.10.dylib (compatibility version 11.0.0, current version 11.5.0) > /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 169.3.0) >
1997 May 29
2
R-beta: WISH: For dyn.load()ing, I'd like is.loaded(.) , symbol.C, symbol.For
In S(plus), I can write functions using code fragments like if(!is.loaded(symbol.C("my_C_fun"))) dyn.load("......../my_C_fun.o") r <- .C("my_C_fun", x = x, n = n, ... ) which I would like to have in R, too. The S-plus help page on this subject says : S+>> Code Availability S+>> S+>> DESCRIPTION: S+>> is.loaded
2007 Mar 29
7
re-work option initialization
Dennis Kasprzyk and I have been discussing some changes to how options are initialized. Problems with how options are currently initialized. 1. Helper functions are not used to initialize options, which means that if we make a change to the option structure, all option initialization code needs to be updated. Using helper functions will also reduces the amount of duplicate code. 2. No
2016 May 02
2
Ubuntu 14 Warning
This morning, 2 of us noticed that running contrib/scripts/install_prereq on a fresh Ubuntu 14 system actually removed critical packages like network-manager, openssh-server, perl, git, and a bunch of others. It appears that the culprit is the libsnmp-dev package. It's default conflict resolution solution is to uninstall conflicting packages and the alternate solution is to correctly upgrade
2003 Feb 22
1
rsync ported to BeOS-bone
...ack). Some explanations: - BeOS doesn't have chroot(), - the BONE networking stack export legacy network function for old apps in libnet.so (linked to by default), so it's necessary to force linking to the new libraries for things to work. I've yet to get inet_ntop() to be used from libbind.so... but I'm not qualified enough on autoconf. - the openlog() and syslog() functions are exported by libbe.so (which is a GUI library, really dunno who put that here). - getpass() doesn't exist, but I have a (yet unreleased) library (libmoreposix) that provides a working version. - t...
2012 Oct 23
2
[LLVMdev] dyld: lazy symbol binding failed: fast lazy bind offset out of range
On Tue, Oct 23, 2012 at 09:41:46AM +0200, Duncan Sands wrote: > Hi, > >> I looks like the code is calling dlopen() on LLVMPolly.so and it or something it links against has an initializer. The initialer is run before dlopen() returns and the crash is in the initializer. The message: >> >> dyld: fast lazy bind offset out of range (53437, max=7640) in image
2012 Dec 01
0
[LLVMdev] radr://12777299, "potential pthread/eh bug exposed by libsanitizer"
+kremenek, ganna On Sat, Dec 1, 2012 at 4:33 AM, Jack Howarth <howarth at bromo.med.uc.edu>wrote: > On Fri, Nov 30, 2012 at 01:41:05PM +0400, Kostya Serebryany wrote: > > Just want to remind everyone that we plan to stop using mach_override in > > asanin favor of OSX's native function interposition. > > So, we probably don't want to spend too much effort fixing
2012 Dec 01
4
[LLVMdev] radr://12777299, "potential pthread/eh bug exposed by libsanitizer"
On Fri, Nov 30, 2012 at 01:41:05PM +0400, Kostya Serebryany wrote: > Just want to remind everyone that we plan to stop using mach_override in > asanin favor of OSX's native function interposition. > So, we probably don't want to spend too much effort fixing mach_override. > > --kcc Kostya, Unless I am misunderstanding the code in asan/asan_intercepted_functions.h,