Home | History | Annotate | Download | only in v8

Lines Matching full:soname

281         'soname:on': {
282 'LINKFLAGS': ['-Wl,-soname,${SONAME}']
665 'soname': {
668 'help': 'turn on setting soname for Linux shared library'
762 SONAME_PATTERN = re.compile(r"#define\s+SONAME\s+\"(.*)\"")
797 if env['os'] == 'win32' and env['soname'] == 'on':
798 Abort("Shared Object soname not applicable for Windows.")
799 if env['soname'] == 'on' and env['library'] == 'static':
800 Abort("Shared Object soname not applicable for static library.")
961 if context.options['soname'] == 'on':
962 # When building shared object with SONAME version the library name.
966 # Generate library SONAME if required by the build.
967 if context.options['soname'] == 'on':
968 soname = GetSpecificSONAME()
969 if soname == '':
970 soname = 'lib' + library_name + '.so'
971 env['SONAME'] = soname