Skip to content
Snippets Groups Projects
Commit 33847a22 authored by Mick Jordan's avatar Mick Jordan
Browse files

mx.copylib: more solaris support

parent 9de70a85
No related branches found
No related tags found
No related merge requests found
......@@ -117,9 +117,12 @@ def copylib(args):
return 0
if os.environ.has_key('FASTR_RELEASE'):
if args[0] == 'quadmath' and platform.system() == 'SunOS':
return 0
mx.abort(args[0] + ' not found in PKG_LDFLAGS_OVERRIDE, but required with FASTR_RELEASE')
mx.log(args[0] + ' not found in PKG_LDFLAGS_OVERRIDE, assuming system location')
return 0
def updatelib(args):
'''
......
......@@ -331,6 +331,11 @@ suite = {
"path" : "mxbuild/dists/darwin/amd64/fastr-unit-tests-native.jar",
},
},
"SunOS" : {
"amd64" : {
"path" : "mxbuild/dists/solaris/amd64/fastr-unit-tests-native.jar",
}
},
},
},
......@@ -352,6 +357,11 @@ suite = {
"path" : "mxbuild/dists/darwin/amd64/fastr-native-dev.jar",
},
},
"SunOS" : {
"amd64" : {
"path" : "mxbuild/dists/solaris/amd64/fastr-native-dev.jar",
},
},
},
},
......@@ -369,6 +379,11 @@ suite = {
"path" : "mxbuild/dists/darwin/amd64/fastr-release.jar",
}
},
"SunOS" : {
"amd64" : {
"path" : "mxbuild/dists/solaris/amd64/fastr-release.jar",
}
},
},
},
},
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment