parser.add_option('--no-fetch', action='store_const', dest='mode', const='nofetch', help='Build, but do not fetch (will fail if sources are missing)') parser.add_option('--osx-sdk-version', dest='osx_sdk', default='10.6', help='SDK version to use. Make sure you have the SDK version before requesting it.') parser.add_option('--pretend', action='store_true', dest='pretend', default=False, help='Show the list of packages without actually doing anything') parser.add_option('--resume', action='store_true', dest='resume', default=False, help='Reuse in-progress build/install dirs') parser.add_option('--save-temps', action='store_true', dest='save_temps', default=False, help='Save build files to check include paths') parser.add_option('--threads', type='int', dest='threads', default=get_cores(), help='Build threads to use') parser.add_option('--fast', action='store_true', dest='fast', default=False, help='For any git package, update and build in existing directory rather than stating from scratch (may fail)') parser.add_option('--add-ld-library-path', dest='ld_library_path', default=None, help='This is a hack for the supercomputer that uses libstdc++ in a non-standard location. Please don\'t use this option unless you truly needed. This has the ability to corrupt our builds if you put /usr/lib or /lib as an argument.') global opt (opt, args) = parser.parse_args() info('Using %d build processes' % opt.threads) if opt.ccache and opt.save_temps: die('--save-temps was specified. Disable ccache with --no-ccache.') if opt.build_root is not None and not P.exists(opt.build_root): os.makedirs(opt.build_root) if opt.resume and opt.build_root is None: opt.build_root = grablink('last-run') if opt.build_root is None: opt.build_root = mkdtemp(prefix=binary_builder_prefix()) # Things misbehave if directories have symlinks or are relative opt.build_root = P.realpath(opt.build_root) opt.download_dir = P.realpath(opt.download_dir) # We count in deploy-base.py on opt.build_root to contain the
) parser.add_option( '--add-ld-library-path', dest='ld_library_path', default=None, help= 'This is a hack for the supercomputer that uses libstdc++ in a non-standard location. Please don\'t use this option unless you truly needed. This has the ability to corrupt our builds if you put /usr/lib or /lib as an argument.' ) global opt (opt, args) = parser.parse_args() info('Using %d build processes' % opt.threads) if opt.ccache and opt.save_temps: die('--save-temps was specified. Disable ccache with --no-ccache.') if opt.build_root is not None and not P.exists(opt.build_root): os.makedirs(opt.build_root) if opt.resume and opt.build_root is None: opt.build_root = grablink('last-run') if opt.build_root is None: opt.build_root = mkdtemp(prefix=binary_builder_prefix()) # Things misbehave if directories have symlinks or are relative opt.build_root = P.realpath(opt.build_root) opt.download_dir = P.realpath(opt.download_dir) # We count in deploy-base.py on opt.build_root to contain the
parser.add_option('--save-temps', action='store_true', dest='save_temps', default=False, help='Save build files to check include paths') parser.add_option('--threads', type='int', dest='threads', default=2*get_cores(), help='Build threads to use') parser.add_option('--download-dir', dest='download_dir', default='/tmp/tarballs', help='Where to archive source files') parser.add_option('--build-root', dest='build_root', default=None, help='Root of the build and install') parser.add_option('--resume', action='store_true', dest='resume', default=False, help='Reuse in-progress build/install dirs') global opt (opt, args) = parser.parse_args() tweak_path(opt.coreutils) info('Using %d build processes' % opt.threads) if opt.isisroot is not None and not P.isdir(opt.isisroot): parser.print_help() die('\nIllegal argument to --isisroot: path does not exist') if opt.ccache and opt.save_temps: die('--ccache and --save-temps conflict. Disabling ccache.') if opt.resume: opt.build_root = grablink('last-run') if opt.build_root is None or not P.exists(opt.build_root): opt.build_root = mkdtemp(prefix='BinaryBuilder') # Things misbehave if the buildroot is symlinks in it opt.build_root = P.realpath(opt.build_root) # -Wl,-z,now ? e = Environment(
global opt (opt, args) = parser.parse_args() def usage(msg, code=-1): parser.print_help() print('\n%s' % msg) sys.exit(code) if not args: usage('Missing required argument: installdir') installdir = P.realpath(args[0]) if not (P.exists(installdir) and P.isdir(installdir)): usage('Invalid installdir %s (not a directory)' % installdir) if opt.isisroot is not None and not P.isdir(opt.isisroot): parser.print_help() die('\nIllegal argument to --isisroot: path does not exist') logging.basicConfig(level=opt.loglevel) mgr = DistManager(tarball_name()) try: INSTALLDIR = Prefix(installdir) ISISROOT = P.join(INSTALLDIR, 'isis') SEARCHPATH = [P.join(ISISROOT, 'lib'), P.join(ISISROOT, '3rdParty', 'lib'), INSTALLDIR.lib()] if opt.isisroot is not None: ISISROOT = opt.isisroot if opt.include == 'all': mgr.add_directory(INSTALLDIR, hardlink=True) mgr.make_tarball()
) parser.add_option( '--add-library-path', dest='library_path', default=None, help= 'This is a hack for the supercomputer that uses libstdc++ in a non-standard location. Please don\'t use this option unless you truly needed. This has the ability to corrupt our builds if you put /usr/lib or /lib as an argument.' ) global opt (opt, args) = parser.parse_args() info('Using %d build processes' % opt.threads) if opt.ccache and opt.save_temps: die('--save-temps was specified. Disable ccache with --no-ccache.') if opt.build_root is not None and not P.exists(opt.build_root): os.makedirs(opt.build_root) if opt.asp_deps_dir == "": opt.asp_deps_dir = P.join(os.environ["HOME"], 'miniconda3/envs/asp_deps') if not P.exists(opt.asp_deps_dir): die('Cannot find the ASP dependencies directory installed with conda at ' + opt.asp_deps_dir + '. Specify it via --asp-deps-dir.') if opt.resume and opt.build_root is None: opt.build_root = grablink('last-run') if opt.build_root is None:
if not args: usage('Missing required argument: installdir') # If the user specified a VW build, update some default options. if opt.vw_build: if opt.include == './whitelist': opt.include = './whitelist_vw' if opt.name == 'StereoPipeline': opt.name = 'VisionWorkbench' installdir = P.realpath(args[0]) if not (P.exists(installdir) and P.isdir(installdir)): usage('Invalid installdir %s (not a directory)' % installdir) if opt.isisroot is not None and not P.isdir(opt.isisroot): parser.print_help() die('\nIllegal argument to --isisroot: path does not exist') # Ensure installdir/bin is in the path, to be able to find chrpath, etc. if "PATH" not in os.environ: os.environ["PATH"] = "" os.environ["PATH"] = P.join(installdir, 'bin') + os.pathsep + os.environ["PATH"] logging.basicConfig(level=opt.loglevel) wrapper_file = 'libexec-helper.sh' if (opt.vw_build): wrapper_file = 'libexec-helper_vw.sh' mgr = DistManager(tarball_name(), wrapper_file) try: INSTALLDIR = Prefix(installdir) ISISROOT = P.join(INSTALLDIR)
parser.add_option('--no-ccache', action='store_false', dest='ccache', default=True, help='Disable ccache') parser.add_option('--no-fetch', action='store_const', dest='mode', const='nofetch', help='Build, but do not fetch (will fail if sources are missing)') parser.add_option('--osx-sdk-version', dest='osx_sdk', default='10.6', help='SDK version to use. Make sure you have the SDK version before requesting it.') parser.add_option('--pretend', action='store_true', dest='pretend', default=False, help='Show the list of packages without actually doing anything') parser.add_option('--resume', action='store_true', dest='resume', default=False, help='Reuse in-progress build/install dirs') parser.add_option('--save-temps', action='store_true', dest='save_temps', default=False, help='Save build files to check include paths') parser.add_option('--threads', type='int', dest='threads', default=get_cores(), help='Build threads to use') parser.add_option('--add-ld-library-path', dest='ld_library_path', default=None, help='This is a hack for the supercomputer that uses libstdc++ in a non-standard location. Please don\'t use this option unless you truly needed. This has the ability to corrupt our builds if you put /usr/lib or /lib as an argument.') global opt (opt, args) = parser.parse_args() info('Using %d build processes' % opt.threads) if opt.ccache and opt.save_temps: die('--save-temps was specified. Disable ccache with --no-ccache.') if opt.build_root is not None and not P.exists(opt.build_root): os.makedirs(opt.build_root) if opt.resume and opt.build_root is None: opt.build_root = grablink('last-run') if opt.build_root is None: opt.build_root = mkdtemp(prefix=binary_builder_prefix()) # Things misbehave if directories have symlinks or are relative opt.build_root = P.realpath(opt.build_root) opt.download_dir = P.realpath(opt.download_dir) # We count in deploy-base.py on opt.build_root to contain the
global opt (opt, args) = parser.parse_args() def usage(msg, code=-1): parser.print_help() print('\n%s' % msg) sys.exit(code) if not args: usage('Missing required argument: installdir') if opt.asp_deps_dir == "": opt.asp_deps_dir = P.join(os.environ["HOME"], 'miniconda3/envs/asp_deps') if not P.exists(opt.asp_deps_dir): die('Cannot find the ASP dependencies directory installed with conda at ' + opt.asp_deps_dir + '. Specify it via --asp-deps-dir.') # If the user specified a VW build, update some default options. if opt.vw_build: if opt.include == './whitelist': opt.include = './whitelist_vw' if opt.name == 'StereoPipeline': opt.name = 'VisionWorkbench' installdir = P.realpath(args[0]) if not (P.exists(installdir) and P.isdir(installdir)): usage('Invalid installdir %s (not a directory)' % installdir) if opt.isisroot is not None and not P.isdir(opt.isisroot): parser.print_help() die('\nIllegal argument to --isisroot: path does not exist')
help='Build threads to use') parser.add_option( '--add-ld-library-path', dest='ld_library_path', default=None, help= 'This is a hack for the supercomputer that uses libstdc++ in a non-standard location. Please don\'t use this option unless you truly needed. This has the ability to corrupt our builds if you put /usr/lib or /lib as an argument.' ) global opt (opt, args) = parser.parse_args() info('Using %d build processes' % opt.threads) if opt.ccache and opt.save_temps: die('--save-temps was specified. Disable ccache with --no-ccache.') if opt.build_root is not None and not P.exists(opt.build_root): os.makedirs(opt.build_root) if opt.resume and opt.build_root is None: opt.build_root = grablink('last-run') if opt.build_root is None: opt.build_root = mkdtemp(prefix=binary_builder_prefix()) # Things misbehave if directories have symlinks or are relative opt.build_root = P.realpath(opt.build_root) opt.download_dir = P.realpath(opt.download_dir) # We count in deploy-base.py on opt.build_root to contain the
parser.add_option('--pretend', action='store_true', dest='pretend', default=False, help='Show the list of packages without actually doing anything') parser.add_option('--resume', action='store_true', dest='resume', default=False, help='Reuse in-progress build/install dirs') parser.add_option('--save-temps', action='store_true', dest='save_temps', default=False, help='Save build files to check include paths') parser.add_option('--threads', type='int', dest='threads', default=get_cores(), help='Build threads to use') parser.add_option('--skip-tests', action='store_true', dest='skip_tests', default=False, help='Skip running tests when building VW and ASP. The latter is very time-consuming.') parser.add_option('--fast', action='store_true', dest='fast', default=False, help='For any git package, update and build in existing directory rather than stating from scratch (may fail)') parser.add_option('--add-ld-library-path', dest='ld_library_path', default=None, help='This is a hack for the supercomputer that uses libstdc++ in a non-standard location. Please don\'t use this option unless you truly needed. This has the ability to corrupt our builds if you put /usr/lib or /lib as an argument.') parser.add_option('--add-library-path', dest='library_path', default=None, help='This is a hack for the supercomputer that uses libstdc++ in a non-standard location. Please don\'t use this option unless you truly needed. This has the ability to corrupt our builds if you put /usr/lib or /lib as an argument.') global opt (opt, args) = parser.parse_args() info('Using %d build processes' % opt.threads) if opt.ccache and opt.save_temps: die('--save-temps was specified. Disable ccache with --no-ccache.') if opt.build_root is not None and not P.exists(opt.build_root): os.makedirs(opt.build_root) if opt.resume and opt.build_root is None: opt.build_root = grablink('last-run') if opt.build_root is None: opt.build_root = mkdtemp(prefix=binary_builder_prefix()) # Things misbehave if directories have symlinks or are relative opt.build_root = P.realpath(opt.build_root) opt.download_dir = P.realpath(opt.download_dir) # We count in deploy-base.py on opt.build_root to contain the