SConstruct (3583:f2b9961c45bd) | SConstruct (3584:8c3cdb2c001c) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 356 unchanged lines hidden (view full) --- 365nonsticky_opts = Options(args=ARGUMENTS) 366nonsticky_opts.AddOptions( 367 BoolOption('update_ref', 'Update test reference outputs', False) 368 ) 369 370# These options get exported to #defines in config/*.hh (see src/SConscript). 371env.ExportOptions = ['FULL_SYSTEM', 'ALPHA_TLASER', 'USE_FENV', \ 372 'USE_MYSQL', 'NO_FAST_ALLOC', 'SS_COMPATIBLE_FP', \ | 1# -*- mode:python -*- 2 3# Copyright (c) 2004-2005 The Regents of The University of Michigan 4# All rights reserved. 5# 6# Redistribution and use in source and binary forms, with or without 7# modification, are permitted provided that the following conditions are 8# met: redistributions of source code must retain the above copyright --- 356 unchanged lines hidden (view full) --- 365nonsticky_opts = Options(args=ARGUMENTS) 366nonsticky_opts.AddOptions( 367 BoolOption('update_ref', 'Update test reference outputs', False) 368 ) 369 370# These options get exported to #defines in config/*.hh (see src/SConscript). 371env.ExportOptions = ['FULL_SYSTEM', 'ALPHA_TLASER', 'USE_FENV', \ 372 'USE_MYSQL', 'NO_FAST_ALLOC', 'SS_COMPATIBLE_FP', \ |
373 'USE_CHECKER', 'PYTHONHOME'] | 373 'USE_CHECKER', 'PYTHONHOME', 'TARGET_ISA'] |
374 375# Define a handy 'no-op' action 376def no_action(target, source, env): 377 return 0 378 379env.NoAction = Action(no_action, None) 380 381################################################### --- 237 unchanged lines hidden --- | 374 375# Define a handy 'no-op' action 376def no_action(target, source, env): 377 return 0 378 379env.NoAction = Action(no_action, None) 380 381################################################### --- 237 unchanged lines hidden --- |