search for: bshareable

Displaying 6 results from an estimated 6 matches for "bshareable".

Did you mean: shareable
2020 Jun 02
2
LLD : __start_ and __end_ symbols for orphan sections
...and __stop symbols will be protected. How can I keep it from setting it as protected? ># set_orphan_dummy_anno : { PROVIDE(__start_set_orphan_dummy_anno = . ); *(set_orphan_dummy_anno) PROVIDE (__stop_set_orphan_dummy_anno = . );} >} >============ howto ============= : >LDFLAGS="-Bshareable -T ./linker_script" >clang -fPIC -c test.c >ld.lld $LDFLAGS test.o -o test.so >objdump -tT test.so Making __start_* __stop_* STV_PROTECTED is a deliberate choice. See https://reviews.llvm.org/D44566 Such symbols can still be exported to .dynsym (can be looked up from another shared o...
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
2020 Jun 02
2
LLD : __start_ and __end_ symbols for orphan sections
You are right it creates them but sets the protected flag (STV_PROTECTED) which seems to be the cause of my problem. How can I tell it to set the flag as STV_DEFAULT? Thanks A On 5/28/20, 11:30 PM, "Fangrui Song" <maskray at google.com> wrote: NetApp Security WARNING: This is an external email. Do not click links or open attachments unless you recognize the sender and know
1999 Apr 12
1
R-0.64.0 Install - Cannot find eda.so
...AFTER RUNNING CONFIGURE: R is now configured for i386-unknown-freebsd2.2.8 Source directory: . Installation directory: /usr/local C compiler: gcc -g -O2 FORTRAN compiler: f77 Gnome support enabled: no WHILE RUNNING MAKE: Building R base package ld -Bshareable -R -o eda.so line.o smooth.o ld: eda.so: No such file or directory *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. *** Error code 1 Stop. ------------------------------------------------------------------ Loren McCarter Graduate Student, Behavioral...
2003 Aug 09
18
[releng_4 tinderbox] failure on i386/i386
TB --- 2003-08-09 16:00:11 - starting RELENG_4 tinderbox run for i386/i386 TB --- 2003-08-09 16:00:11 - checking out the source tree TB --- cd /home/des/tinderbox/RELENG_4/i386/i386 TB --- /usr/bin/cvs -f -R -q -d/home/ncvs update -Pd -rRELENG_4 src TB --- 2003-08-09 16:00:11 - /usr/bin/cvs returned exit code 1 TB --- 2003-08-09 16:00:11 - ERROR: unable to check out the source tree TB ---
2014 Sep 17
2
[LLVMdev] [lld] -Bstatic / -Bdynamic switches handling
...ild as some libs do not have static counterparts and the linker fails with the "library not found" error. Oleg On 17.09.2014 17:52, Simon Atanasyan wrote: > Hi, > > ​This functionality is implemented say incompletely. Now -Bdynamic is > not recognized at all. -Bstatic and -Bshareable are aliases for > -static and -shared options respectively. The linker uses the last > option specified in a command line just to select type of output file. > > ​Simon​ > > On Wed, Sep 17, 2014 at 4:30 PM, Oleg Ranevskyy > <llvm.mail.list at gmail.com <mailto:llvm.mai...