From 28d73244267a62e4a89e95b4d2f08cc748691d2e Mon Sep 17 00:00:00 2001 From: Mick Jordan <mick.jordan@oracle.com> Date: Wed, 19 Oct 2016 13:15:09 -0700 Subject: [PATCH] abort build if required library not found when FASTR_RELEASE is set --- mx.fastr/mx_copylib.py | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/mx.fastr/mx_copylib.py b/mx.fastr/mx_copylib.py index 68cd691309..79d9f720d2 100644 --- a/mx.fastr/mx_copylib.py +++ b/mx.fastr/mx_copylib.py @@ -61,22 +61,24 @@ def _copylib(lib, libpath, target): except subprocess.CalledProcessError: mx.abort('copylib: otool failed') # copy both files - shutil.copy(real_libpath, target) + shutil.copyfile(real_libpath, os.path.join(target, os.path.basename(real_libpath))) + mx.log('copied ' + lib + ' library from ' + real_libpath + ' to ' + target) libpath_base = os.path.basename(libpath) os.chdir(target) - if libpath != real_libpath: + mx.log('libpath: ' + libpath + ' real_libpath: ' + real_libpath) + if os.path.basename(libpath) != os.path.basename(real_libpath): # create a symlink if os.path.exists(libpath_base): os.remove(libpath_base) + mx.log('ln -s ' + os.path.basename(real_libpath) + ' ' + libpath_base) os.symlink(os.path.basename(real_libpath), libpath_base) # On Darwin we change the id to use @rpath if platform.system() == 'Darwin': try: + mx.log('install_name_tool -id @rpath/' + libpath_base + ' ' + libpath_base) subprocess.check_call(['install_name_tool', '-id', '@rpath/' + libpath_base, libpath_base]) except subprocess.CalledProcessError: mx.abort('copylib: install_name_tool failed') - # TODO @rpath references within the library? - mx.log('copied ' + lib + ' library from ' + libpath + ' to ' + target) def copylib(args): ''' @@ -111,6 +113,9 @@ def copylib(args): _copylib(args[0], os.path.join(path, f), args[1]) return 0 + if os.environ.has_key('FASTR_RELEASE'): + 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') def updatelib(args): -- GitLab