Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shared objects with Sun WorkShop / Forte / ONE Studio #1206

Closed
bdbaddog opened this issue Jan 2, 2018 · 0 comments
Closed

Shared objects with Sun WorkShop / Forte / ONE Studio #1206

bdbaddog opened this issue Jan 2, 2018 · 0 comments
Labels

Comments

@bdbaddog
Copy link
Contributor

bdbaddog commented Jan 2, 2018

This issue was originally created at: 2005-06-30 21:26:40.
This issue was reported by: fnjordy.
fnjordy said at 2005-06-30 21:26:40

Sun WorkShop does not support extensions other than '.o', currently (0.96.90) scons tries to use '.os'.

For shared objects to use position independent code scons should also use '-KPIC':

env['SHCCFLAGS'] = '$CCFLAGS -KPIC'
env['SHOBJSUFFIX'] = '.o' 
env['SHOBJPREFIX'] = 'so_'

fnjordy said at 2005-07-01 02:37:31

Correction, to save existing object prefix:

env['SHCCFLAGS'] = '$CCFLAGS -KPIC'
env['SHOBJSUFFIX'] = '.o'
env['SHOBJPREFIX'] = 'so_$OBJPREFIX'

stevenknight said at 2005-08-20 18:06:58

Integrated for next release. Thank you! --SK

issues@scons said at 2005-08-20 18:06:58

Converted from SourceForge tracker item 1230724

@bdbaddog bdbaddog closed this as completed Jan 2, 2018
@bdbaddog bdbaddog added the P3 label Jan 2, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant