Searched refs:soname (Results 1 - 25 of 50) sorted by relevance

12

/freebsd-12-stable/lib/libc/tests/gen/
H A Ddlopen_empty_test.c42 static char *soname; variable
47 unlink(soname);
48 free(soname);
68 asprintf(&soname, "%s.so", fname);
69 ATF_REQUIRE_MSG(soname != NULL, "asprintf failed; errno=%d", ENOMEM);
70 fd = open(soname, O_WRONLY | O_CREAT | O_TRUNC, DEFFILEMODE);
71 ATF_REQUIRE_MSG(fd != -1, "open(\"%s\") failed; errno=%d", soname, errno);
81 dlh = dlopen(soname, RTLD_LAZY);
86 ATF_REQUIRE_MSG(dlh == NULL, "dlopen(\"%s\") did not fail", soname);
87 unlink(soname);
[all...]
/freebsd-12-stable/contrib/gdb/
H A Dltcf-cxx.sh81 archive_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
82 archive_expsym_cmds='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
194 archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}-brtl \${wl}$exp_sym_flag:\$export_symbols"
200 archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
214 archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
277 hpux9*) archive_cmds='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname
[all...]
H A Dltmain.sh2054 # figure out the soname
2061 soname="$dlname"
2070 eval soname=\"$soname_spec\"
2072 soname="$realname"
2076 soroot="$soname"
2077 soname=`echo $soroot | sed -e 's/^.*\///'`
2078 newlib="libimp-`echo $soname | sed 's/^lib//;s/\.dll$//'`.a"
2081 if test -f "$output_objdir/$soname-def"; then :
2083 $show "extracting exported symbol list from \`$soname'"
2096 $show "generating import library for \`$soname'"
[all...]
/freebsd-12-stable/tools/regression/tls/ttls3/
H A DMakefile11 ld $(LDFLAGS) elftls.o -soname libtls.so.1 -o libtls.so.1
16 ld $(LDFLAGS) tls-test.o libtls.so.1 -rpath=${.OBJDIR} -soname libtls-test.so.1 -o libtls-test.so.1
/freebsd-12-stable/sys/contrib/libsodium/dist-build/
H A Dandroid-build.sh55 --disable-soname-versions \
71 --disable-soname-versions \
/freebsd-12-stable/contrib/gdb/gdb/
H A Dsolist.h105 int (*find_and_open_solib) (char *soname,
H A Dsolib-sunos.c433 match_main (char *soname) argument
439 if (strcmp (soname, *mainp) == 0)
H A Dsolib-svr4.c891 match_main (char *soname) argument
897 if (strcmp (soname, *mainp) == 0)
/freebsd-12-stable/lib/libomp/
H A DMakefile72 LDFLAGS+= -Wl,-soname,libomp.so
/freebsd-12-stable/contrib/binutils/ld/
H A Dld.h202 /* Name to give runtime libary from the -soname argument. */
203 char *soname; member in struct:__anon822
/freebsd-12-stable/sys/modules/linux64/
H A DMakefile39 -Wl,-soname=${VDSO}.so.1,-warn-common -nostdlib \
/freebsd-12-stable/contrib/libucl/
H A DMakefile.unix20 LD_SHARED_FLAGS ?= -Wl,-soname,$(SONAME) -shared -lm
H A DMakefile.w3223 LD_SHARED_FLAGS ?= -Wl,-soname,$(SONAME) -shared -lm
/freebsd-12-stable/sys/modules/linux/
H A DMakefile67 -Wl,-soname=${VDSO}.so.1,--eh-frame-hdr,-warn-common \
/freebsd-12-stable/contrib/bmake/mk/
H A Dlib.mk51 # via -soname. Usually ${SHLIB_MAJOR} on ELF.
114 SHLIB_SHFLAGS= -soname lib${LIB}.so.${SHLIB_SOVERSION}
128 SHLIB_SHFLAGS= -soname lib${LIB}.so.${SHLIB_SOVERSION}
173 LD_shared=-shared -Wl,"-soname lib${LIB}.so.${SHLIB_MAJOR}"
/freebsd-12-stable/contrib/dtc/
H A DMakefile41 SHAREDLIB_LINK_OPTIONS=-shared -Wl,--version-script=$(LIBFDT_version) -Wl,-soname,
/freebsd-12-stable/sys/contrib/zstd/lib/
H A DMakefile46 # OS X linker doesn't support -soname, and use different extension
54 SONAME_FLAGS = -Wl,-soname=libzstd.$(SHARED_EXT).$(LIBVER_MAJOR)
/freebsd-12-stable/contrib/binutils/bfd/
H A Delflink.c3034 const char *soname,
3046 strindex = _bfd_elf_strtab_add (hash_table->dynstr, soname, FALSE);
3448 const char *soname = NULL;
3495 soname = bfd_elf_string_from_elf_section (abfd, shlink, tagv);
3496 if (soname == NULL)
3609 if (soname == NULL || *soname == '\0')
3611 soname = elf_dt_name (abfd);
3612 if (soname == NULL || *soname
3024 elf_add_dt_needed_tag(bfd *abfd, struct bfd_link_info *info, const char *soname, bfd_boolean do_it) argument
3439 const char *soname = NULL; local
4351 const char *soname = elf_dt_name (abfd); local
5371 bfd_elf_size_dynamic_sections(bfd *output_bfd, const char *soname, const char *rpath, const char *filter_shlib, const char * const *auxiliary_filters, struct bfd_link_info *info, asection **sinterpptr, struct bfd_elf_version_tree *verdefs) argument
[all...]
/freebsd-12-stable/contrib/binutils/
H A Dltmain.sh4163 # figure out the soname
4171 soname="$dlname"
4180 eval soname=\"$soname_spec\"
4182 soname="$realname"
4186 soroot="$soname"
4188 soname="$func_basename_result"
4189 func_stripname 'lib' '.dll' "$soname"
4193 if test -f "$output_objdir/$soname-def"; then :
4195 func_echo "extracting exported symbol list from \`$soname'"
4201 func_echo "generating import library for \`$soname'"
[all...]
/freebsd-12-stable/crypto/heimdal/
H A Dltmain.sh6736 # figure out the soname
6744 soname="$dlname"
6754 eval soname=\"$soname_spec\"
6756 soname="$realname"
6760 soroot="$soname"
6762 soname="$func_basename_result"
6763 func_stripname 'lib' '.dll' "$soname"
6767 if test -f "$output_objdir/$soname-def"; then :
6769 func_verbose "extracting exported symbol list from \`$soname'"
6775 func_verbose "generating import library for \`$soname'"
[all...]
/freebsd-12-stable/contrib/ntp/sntp/libevent/build-aux/
H A Dltmain.sh8193 # figure out the soname
8201 soname=$dlname
8211 eval soname=\"$soname_spec\"
8213 soname=$realname
8217 soroot=$soname
8219 soname=$func_basename_result
8220 func_stripname 'lib' '.dll' "$soname"
8224 if test -f "$output_objdir/$soname-def"; then :
8226 func_verbose "extracting exported symbol list from '$soname'"
8232 func_verbose "generating import library for '$soname'"
[all...]
/freebsd-12-stable/contrib/openbsm/config/
H A Dltmain.sh8193 # figure out the soname
8201 soname=$dlname
8211 eval soname=\"$soname_spec\"
8213 soname=$realname
8217 soroot=$soname
8219 soname=$func_basename_result
8220 func_stripname 'lib' '.dll' "$soname"
8224 if test -f "$output_objdir/$soname-def"; then :
8226 func_verbose "extracting exported symbol list from '$soname'"
8232 func_verbose "generating import library for '$soname'"
[all...]
/freebsd-12-stable/contrib/openpam/
H A Dltmain.sh8193 # figure out the soname
8201 soname=$dlname
8211 eval soname=\"$soname_spec\"
8213 soname=$realname
8217 soroot=$soname
8219 soname=$func_basename_result
8220 func_stripname 'lib' '.dll' "$soname"
8224 if test -f "$output_objdir/$soname-def"; then :
8226 func_verbose "extracting exported symbol list from '$soname'"
8232 func_verbose "generating import library for '$soname'"
[all...]
/freebsd-12-stable/contrib/sqlite3/
H A Dltmain.sh8199 # figure out the soname
8207 soname=$dlname
8217 eval soname=\"$soname_spec\"
8219 soname=$realname
8223 soroot=$soname
8225 soname=$func_basename_result
8226 func_stripname 'lib' '.dll' "$soname"
8230 if test -f "$output_objdir/$soname-def"; then :
8232 func_verbose "extracting exported symbol list from '$soname'"
8238 func_verbose "generating import library for '$soname'"
[all...]
/freebsd-12-stable/contrib/unbound/
H A Dltmain.sh8195 # figure out the soname
8203 soname=$dlname
8213 eval soname=\"$soname_spec\"
8215 soname=$realname
8219 soroot=$soname
8221 soname=$func_basename_result
8222 func_stripname 'lib' '.dll' "$soname"
8226 if test -f "$output_objdir/$soname-def"; then :
8228 func_verbose "extracting exported symbol list from '$soname'"
8234 func_verbose "generating import library for '$soname'"
[all...]

Completed in 575 milliseconds

12