compile (3855:e680b27c19cc) compile (11320:42ecb523c64a)
1#!/usr/bin/env python
2# Copyright (c) 2006 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

142add_option('-n', '--no-compile', default=False, action='store_true',
143 help="don't actually compile, just echo SCons command line")
144add_option('--everything', default=False, action='store_true',
145 help="compile everything that can be compiled")
146add_option('-E', "--experimental", action='store_true', default=False,
147 help="enable experimental builds")
148add_option('-v', "--verbose", default=False, action='store_true',
149 help="be verbose")
1#!/usr/bin/env python
2# Copyright (c) 2006 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

142add_option('-n', '--no-compile', default=False, action='store_true',
143 help="don't actually compile, just echo SCons command line")
144add_option('--everything', default=False, action='store_true',
145 help="compile everything that can be compiled")
146add_option('-E', "--experimental", action='store_true', default=False,
147 help="enable experimental builds")
148add_option('-v', "--verbose", default=False, action='store_true',
149 help="be verbose")
150
150
151set_group("Output binary types")
152bool_option("debug", default=False, help="compile debug binaries")
153bool_option("opt", default=False, help="compile opt binaries")
154bool_option("fast", default=False, help="compile fast binaries")
155bool_option("prof", default=False, help="compile profile binaries")
156add_option('-a', "--all-bin", default=False, action='store_true',
157 help="compile debug, opt, and fast binaries")
158

--- 165 unchanged lines hidden ---
151set_group("Output binary types")
152bool_option("debug", default=False, help="compile debug binaries")
153bool_option("opt", default=False, help="compile opt binaries")
154bool_option("fast", default=False, help="compile fast binaries")
155bool_option("prof", default=False, help="compile profile binaries")
156add_option('-a', "--all-bin", default=False, action='store_true',
157 help="compile debug, opt, and fast binaries")
158

--- 165 unchanged lines hidden ---