search for: bstatic

Displaying 20 results from an estimated 40 matches for "bstatic".

Did you mean: static
2014 Sep 17
2
[LLVMdev] [lld] -Bstatic / -Bdynamic switches handling
Hello LLD developers! Lld is claimed to be compatible with the existing linker options. However, there is a discrepancy in how the -Bstatic switch (disable linking against shared libs) is treated by lld and GNU ld. According to the GNU ld docs, the switch affects library searching for -l options *which follow it*. This means -Bstatic can be used multiple times in the command line to disable dynamic linking for particular -l options...
2014 Sep 17
2
[LLVMdev] [lld] -Bstatic / -Bdynamic switches handling
Hi Simon, Thank you for the info. Do you know if there are any plans to add -Bdynamic support and make -Bstatic/-Bdynamic compatible with GNU ld? I am giving lld a try building the Boost libraries and this is a real show stopper. Boost.Build passes both -Bstatic and -Bdynamic to the linker which makes lld think the output file is static, so it totally ignores shared libraries. This breaks the build as som...
2004 May 18
1
Build R-1.9.0 with static libraries ?
Dear all, Which options should I use when running the configure script and/or which changes should I make to Makeconf to build the binary for R-1.9.0 but using only statically linked libraries ? I need to build a binary that is portable between several different Linux (RedHat) distributions. Thanks in advance for your help, Melanie -- http://recherche-en-danger.apinc.org
2017 Mar 31
2
Invoking lld for PE/COFF (Windows) linking
...s\preprocessor\test\config_info.test\clang-linux-5.0cl\debug\address-model-32\config_info.exe" -Wl,--start-group "C:\Programming\VersionControl\modular-boost\build\boost\bin.v2\libs\preprocessor\test\config_info.test\clang-linux-5.0cl\debug\address-model-32\config_info.obj" -Wl,-Bstatic -Wl,-Bdynamic -Wl,--end-group -g --target=i686-pc-windows-msvc -### -fuse-ld=lld clang version 5.0.0 (trunk 298890) Target: i686-pc-windows-msvc Thread model: posix InstalledDir: C:\Programming\VersionControl\bninja_installed_clang\bin "C:\\Programming\\VersionControl\\bninja_installed_cl...
2017 Mar 31
3
Invoking lld for PE/COFF (Windows) linking
On 3/30/2017 7:59 PM, Reid Kleckner via llvm-dev wrote: > On Thu, Mar 30, 2017 at 6:08 AM, Edward Diener via llvm-dev > <llvm-dev at lists.llvm.org <mailto:llvm-dev at lists.llvm.org>> wrote: > > Are you saying that once lld is built with mingw-64/gcc on Windows > it is impossible to tell it to handle PE/COFF files when invoking it > from clang++ using the
2018 Mar 23
2
LLVM gold plugin do not add llvm instrinsics symbols to the linker symbol table
...ymbol table. I do not claim that something is necessary wrong, just want to share my observations with the community. Brief summary If I create a static library with a custom version of 'exp()' math function and link it as follows: $ clang -O0 -ffast-math -flto a.o -L. -Wl,-Bstatic -lexp -Wl,-Bdynamic -lm exp gets resolved from libm instead of my static library (libexp.a) even though the static library appears first on the link command line. Reproducer 1) As a reproducer I built a tiny static library (with the name libexp.a) with exp function defined: $ cat e...
2013 Jun 13
1
[PATCH] Link against libdrm
...git a/src/Makefile.am b/src/Makefile.am index f54e135..5836ead 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,10 +23,10 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@ +AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@ @LIBDRM_CFLAGS@ nouveau_drv_la_LTLIBRARIES = nouveau_drv.la nouveau_drv_la_LDFLAGS = -module -avoid-version @LI...
2007 Feb 09
20
Hello Everyone
I have a bit of a problem with installation. I installed wxX11 in my linux box. I compiled the demos and all the demos, save dbbrowse, work. I think I have a functional wx. Now I''m trying to install wxRuby from source, since I have a 64 bit machine. I only have permission to my home directory so my installation is : /usr/people/stevenq/Applications/wxX11/
2020 Mar 12
0
Linking Error Building Samba on AIX 7
....c.44.o', 'source3/lib/ctdb_dummy.c.44.o', '-o/nimfs/sw/build/samba-4.11.6/bin/default/source3/libsamba-cluster-support-samba4.so', '-Wl,-bsvr4,-R,/nimfs/sw/build/samba-4.11.6/bin/shared', '-Wl,-bsvr4,-R,/nimfs/sw/build/samba-4.11.6/bin/shared/private', '-Wl,-Bstatic', '-L/nimfs/sw/build/samba-4.11.6/bin/default/lib/replace', '-L/nimfs/sw/build/samba-4.11.6/bin/default/lib/talloc', '-L/nimfs/sw/build/samba-4.11.6/bin/default/lib/tevent', '-L/usr/local/lib', '-L/usr/local/lib', '-L/usr/local/lib', '-ltevent...
2010 May 23
1
[PATCH] nv: improve KMS detection
...usarz at gmail.com> --- src/Makefile.am | 2 +- src/nv_driver.c | 11 +++-------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/src/Makefile.am b/src/Makefile.am index 5d57010..8b23e21 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -25,7 +25,7 @@ # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. AM_CFLAGS = @XMODES_CFLAGS@ @XORG_CFLAGS@ $(LIBDRM_CFLAGS) nv_drv_la_LTLIBRARIES = nv_drv.la -nv_drv_la_LDFLAGS = -module -avoid-version +nv_drv_la_LDFLAGS = -module -avoid-version $(LIBDRM_LIBS) nv_drv_ladir = @moduledir@/drivers nv_drv_la_SO...
2018 Mar 23
0
LLVM gold plugin do not add llvm instrinsics symbols to the linker symbol table
...ssary wrong, just want to share my observations with > the community. > > > > Brief summary > > > > If I create a static library with a custom version of ‘exp()’ math > function and link it as follows: > > $ clang -O0 -ffast-math -flto a.o -L. -Wl,-Bstatic -lexp -Wl,-Bdynamic -lm > > exp gets resolved from libm instead of my static library (libexp.a) even > though the static library appears first on the link command line. > > > > Reproducer > > > > 1) As a reproducer I built a tiny static library (with...
2019 Apr 02
2
Make/Build Error on armhf
....o*', 'source4/lib/messaging/*messaging_send.c.1.o*', '-o/home/pi/samba-4.10.0P1/bin/default/source4/lib/messaging/*libMESSAGING-SEND-samba4.so*', '-Wl,-rpath,/home/pi/samba-4.10.0P1/bin/shared', '-Wl,-rpath,/home/pi/samba-4.10.0P1/bin/shared/private', '-Wl,-Bstatic', '-Wl,-Bdynamic', '-L/home/pi/samba-4.10.0P1/bin/default/libcli/util', '-L/home/pi/samba-4.10.0P1/bin/default/lib/tevent', '-L/home/pi/samba-4.10.0P1/bin/default/lib/dbwrap', '-L/home/pi/samba-4.10.0P1/bin/default/lib/param', '-L/home/pi/samba-4.10.0...
2019 Apr 02
2
Make/Build Error on armhf
Hello $List, just downloaded and tried to compile samba 4.10.0 an raspbian stretch which ends in an error: [1924/4121] Compiling source3/rpc_client/rpc_transport_np.c [1925/4121] Linking bin/default/source3/libmsrpc3-samba4.so /usr/bin/ld: /install/samba-4.10.0/bin/default/source3/libutil-cmdline-samba4.so: invalid string offset 3888 >= 3489 for section `.strtab' /usr/bin/ld:
2016 Jan 16
0
gfortran "static" linking on CentOS 7
...nary _still_ requires /lib64/libquadmath.so as revealed by ldd. gfortran does not recognize an option like -static-libquadmath . libquadmath is required even for tiny programs which do not use high precision data types. Heavy use of Google did not bring any result. I tried with linker options -Wl,-Bstatic and so on, but without changes. So, can anyone tell me how to compile/link with gfortran a binary which does not have a requirement for libquadmath? If this is not possible, why are there libgfortran-static and libquadmath-static RPMs ? thank you, Kay
2019 Apr 02
0
Make/Build Error on armhf
....o*', 'source4/lib/messaging/*messaging_send.c.1.o*', '-o/home/pi/samba-4.10.0P1/bin/default/source4/lib/messaging/*libMESSAGING-SEND-samba4.so*', '-Wl,-rpath,/home/pi/samba-4.10.0P1/bin/shared', '-Wl,-rpath,/home/pi/samba-4.10.0P1/bin/shared/private', '-Wl,-Bstatic', '-Wl,-Bdynamic', '-L/home/pi/samba-4.10.0P1/bin/default/libcli/util', '-L/home/pi/samba-4.10.0P1/bin/default/lib/tevent', '-L/home/pi/samba-4.10.0P1/bin/default/lib/dbwrap', '-L/home/pi/samba-4.10.0P1/bin/default/lib/param', '-L/home/pi/samba-4.10.0...
1999 Oct 25
1
need help with building R on Solaris without using shared FORTRAN libraries
I need to build R (we're currently at R version 0.64.0) for Solaris 2.5.1 on SunSPARC without using the libF77.so and libsunmath.so shared libraries. I'd like to use statically linked libraries instead. Nothing I have tried has worked as measured by executing the command "ldd R.binary" to see whether it references the shared libraries or not. This is what I've tried: 1)
2013 Jun 06
0
[PATCH 2/2] nouveau: add libbacklight and randr property support.
...git a/src/Makefile.am b/src/Makefile.am index 17c6389..826a3f6 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,10 +23,10 @@ # -avoid-version prevents gratuitous .0.0.0 version numbers on the end # _ladir passes a dummy rpath to libtool so the thing will actually link # TODO: -nostdlib/-Bstatic/-lgcc platform magic, not installing the .a, etc. -AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@ +AM_CFLAGS = @XORG_CFLAGS@ @LIBUDEV_CFLAGS@ @LIBDRM_NOUVEAU_CFLAGS@ @LIBBACKLIGHT_CFLAGS@ nouveau_drv_la_LTLIBRARIES = nouveau_drv.la nouveau_drv_la_LDFLAGS = -module -avoid-versi...
2017 Oct 31
3
Cross compiling for Baremetal ARM without using GCC
...v -static --target=armv6m-none-eabi -o main main.o a.o reset.o clang version 5.0.0 (tags/RELEASE_500/final) Target: armv6m-none--eabi Thread model: single InstalledDir: clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin "clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin/ld.lld" main.o a.o reset.o -Bstatic -Lclang+llvm-5.0.0-linux-x86_64-ubuntu16.04/lib/clang/5.0.0/lib/baremetal -lc -lm -lclang_rt.builtins-armv6m.a -o main clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin/ld.lld: error: unable to find library -lc clang+llvm-5.0.0-linux-x86_64-ubuntu16.04/bin/ld.lld: error: unable to find library -lm clan...
2019 Apr 04
0
Make/Build Error on armhf
....o*', 'source4/lib/messaging/*messaging_send.c.1.o*', '-o/home/pi/samba-4.10.0P1/bin/default/source4/lib/messaging/*libMESSAGING-SEND-samba4.so*', '-Wl,-rpath,/home/pi/samba-4.10.0P1/bin/shared', '-Wl,-rpath,/home/pi/samba-4.10.0P1/bin/shared/private', '-Wl,-Bstatic', '-Wl,-Bdynamic', '-L/home/pi/samba-4.10.0P1/bin/default/libcli/util', '-L/home/pi/samba-4.10.0P1/bin/default/lib/tevent', '-L/home/pi/samba-4.10.0P1/bin/default/lib/dbwrap', '-L/home/pi/samba-4.10.0P1/bin/default/lib/param', '-L/home/pi/samba-4.10.0...
2012 Jul 23
0
[LLVMdev] Setting up a cross-compiler for cortex-m3
On Sun, Jul 22, 2012 at 11:12 PM, Renato Golin <rengolin at systemcall.org> wrote: > On 22 July 2012 22:03, salvatore benedetto > <salvatore.benedetto at gmail.com> wrote: >> While we are at it, if a new comer would like to understand where everything >> takes place, where should he look? >> >> I did a grep in the source and eventually ended up in