SConstruct (8483:b5052cad1fd3) | SConstruct (8492:1ad244a20877) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2011 Advanced Micro Devices, Inc. 4# Copyright (c) 2009 The Hewlett-Packard Development Company 5# Copyright (c) 2004-2005 The Regents of The University of Michigan 6# All rights reserved. 7# 8# Redistribution and use in source and binary forms, with or without --- 965 unchanged lines hidden (view full) --- 974 env.Append(LIBS=['efence']) 975 976 # Save sticky variable settings back to current variables file 977 sticky_vars.Save(current_vars_file, env) 978 979 if env['USE_SSE2']: 980 env.Append(CCFLAGS=['-msse2']) 981 | 1# -*- mode:python -*- 2 3# Copyright (c) 2011 Advanced Micro Devices, Inc. 4# Copyright (c) 2009 The Hewlett-Packard Development Company 5# Copyright (c) 2004-2005 The Regents of The University of Michigan 6# All rights reserved. 7# 8# Redistribution and use in source and binary forms, with or without --- 965 unchanged lines hidden (view full) --- 974 env.Append(LIBS=['efence']) 975 976 # Save sticky variable settings back to current variables file 977 sticky_vars.Save(current_vars_file, env) 978 979 if env['USE_SSE2']: 980 env.Append(CCFLAGS=['-msse2']) 981 |
982 if env['PROTOCOL'] != 'None': 983 env['RUBY'] = True 984 else: 985 env['RUBY'] = False 986 | |
987 # The src/SConscript file sets up the build rules in 'env' according 988 # to the configured variables. It returns a list of environments, 989 # one for each variant build (debug, opt, etc.) 990 envList = SConscript('src/SConscript', variant_dir = variant_path, 991 exports = 'env') 992 993 # Set up the regression tests for each build. 994 for e in envList: --- 16 unchanged lines hidden --- | 982 # The src/SConscript file sets up the build rules in 'env' according 983 # to the configured variables. It returns a list of environments, 984 # one for each variant build (debug, opt, etc.) 985 envList = SConscript('src/SConscript', variant_dir = variant_path, 986 exports = 'env') 987 988 # Set up the regression tests for each build. 989 for e in envList: --- 16 unchanged lines hidden --- |