Missing change -Kpic/-xcode=pic32 for sun compilers in c++ mode

This commit is contained in:
Thomas Nagy 2015-09-12 23:32:39 +02:00
parent 58bb1ae87c
commit 49f51d547b
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ def sxx_common_flags(conf):
v['cxxprogram_PATTERN'] = '%s'
# shared library
v['CXXFLAGS_cxxshlib'] = ['-Kpic', '-DPIC']
v['CXXFLAGS_cxxshlib'] = ['-xcode=pic32', '-DPIC']
v['LINKFLAGS_cxxshlib'] = ['-G']
v['cxxshlib_PATTERN'] = 'lib%s.so'