SConstruct (3942:edc24787baf6) | SConstruct (4120:3e09b5d32c45) |
---|---|
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 --- 349 unchanged lines hidden (view full) --- 358 # --cflags instead 359 mysql_config_include = mysql_config + ' --cflags | sed s/\\\'//g' 360 # This seems to work in all versions 361 mysql_config_libs = mysql_config + ' --libs' 362 363env = conf.Finish() 364 365# Define the universe of supported ISAs | 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 --- 349 unchanged lines hidden (view full) --- 358 # --cflags instead 359 mysql_config_include = mysql_config + ' --cflags | sed s/\\\'//g' 360 # This seems to work in all versions 361 mysql_config_libs = mysql_config + ' --libs' 362 363env = conf.Finish() 364 365# Define the universe of supported ISAs |
366env['ALL_ISA_LIST'] = ['alpha', 'sparc', 'mips'] | 366env['ALL_ISA_LIST'] = ['alpha', 'sparc', 'mips', 'x86'] |
367 368# Define the universe of supported CPU models 369env['ALL_CPU_LIST'] = ['AtomicSimpleCPU', 'TimingSimpleCPU', 370 'O3CPU', 'OzoneCPU'] 371 372if os.path.isdir(joinpath(SRCDIR, 'encumbered/cpu/full')): 373 env['ALL_CPU_LIST'] += ['FullCPU'] 374 --- 291 unchanged lines hidden --- | 367 368# Define the universe of supported CPU models 369env['ALL_CPU_LIST'] = ['AtomicSimpleCPU', 'TimingSimpleCPU', 370 'O3CPU', 'OzoneCPU'] 371 372if os.path.isdir(joinpath(SRCDIR, 'encumbered/cpu/full')): 373 env['ALL_CPU_LIST'] += ['FullCPU'] 374 --- 291 unchanged lines hidden --- |