SConscript (3645:2bf1f7c69254) SConscript (3683:daaf64c05810)
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

--- 319 unchanged lines hidden (view full) ---

328# "Fast" binary
329makeEnv('fast', '.fo', strip = True,
330 CCFLAGS = Split('-O3'),
331 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
332
333# Profiled binary
334makeEnv('prof', '.po',
335 CCFLAGS = Split('-O3 -g -pg'),
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

--- 319 unchanged lines hidden (view full) ---

328# "Fast" binary
329makeEnv('fast', '.fo', strip = True,
330 CCFLAGS = Split('-O3'),
331 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'])
332
333# Profiled binary
334makeEnv('prof', '.po',
335 CCFLAGS = Split('-O3 -g -pg'),
336 CPPDEFINES = ['NDEBUG', 'TRACING_ON=0'],
336 LINKFLAGS = '-pg')
337
338Return('envList')
337 LINKFLAGS = '-pg')
338
339Return('envList')