SConstruct (6157:eaf2fd8f54c0) | SConstruct (6168:ba6fe02228db) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2009 The Hewlett-Packard Development Company 4# Copyright (c) 2004-2005 The Regents of The University of Michigan 5# All rights reserved. 6# 7# Redistribution and use in source and binary forms, with or without 8# modification, are permitted provided that the following conditions are --- 331 unchanged lines hidden (view full) --- 340global_sticky_vars = Variables(global_sticky_vars_file, args=ARGUMENTS) 341 342global_sticky_vars.AddVariables( 343 ('CC', 'C compiler', environ.get('CC', main['CC'])), 344 ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 345 ('BATCH', 'Use batch pool for build and tests', False), 346 ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 347 ('EXTRAS', 'Add Extra directories to the compilation', '', | 1# -*- mode:python -*- 2 3# Copyright (c) 2009 The Hewlett-Packard Development Company 4# Copyright (c) 2004-2005 The Regents of The University of Michigan 5# All rights reserved. 6# 7# Redistribution and use in source and binary forms, with or without 8# modification, are permitted provided that the following conditions are --- 331 unchanged lines hidden (view full) --- 340global_sticky_vars = Variables(global_sticky_vars_file, args=ARGUMENTS) 341 342global_sticky_vars.AddVariables( 343 ('CC', 'C compiler', environ.get('CC', main['CC'])), 344 ('CXX', 'C++ compiler', environ.get('CXX', main['CXX'])), 345 ('BATCH', 'Use batch pool for build and tests', False), 346 ('BATCH_CMD', 'Batch pool submission command name', 'qdo'), 347 ('EXTRAS', 'Add Extra directories to the compilation', '', |
348 PathListAllExist, PathListMakeAbsolute) 349 ) | 348 PathListAllExist, PathListMakeAbsolute), 349 BoolVariable('RUBY', 'Build with Ruby', False), 350 ) |
350 351# base help text 352help_text = ''' 353Usage: scons [scons options] [build options] [target(s)] 354 355Global sticky options: 356''' 357 --- 548 unchanged lines hidden --- | 351 352# base help text 353help_text = ''' 354Usage: scons [scons options] [build options] [target(s)] 355 356Global sticky options: 357''' 358 --- 548 unchanged lines hidden --- |