OLD | NEW |
1 #!/usr/bin/python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. | 2 # Copyright (c) 2012 The Native Client Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 # | 5 # |
6 # IMPORTANT NOTE: If you make local mods to this file, you must run: | 6 # IMPORTANT NOTE: If you make local mods to this file, you must run: |
7 # % pnacl/build.sh driver | 7 # % pnacl/build.sh driver |
8 # in order for them to take effect in the scons build. This command | 8 # in order for them to take effect in the scons build. This command |
9 # updates the copy in the toolchain/ tree. | 9 # updates the copy in the toolchain/ tree. |
10 # | 10 # |
11 | 11 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 -p --preserve-dates Copy modified/access timestamps to the output | 98 -p --preserve-dates Copy modified/access timestamps to the output |
99 (only native code for now) | 99 (only native code for now) |
100 -s --strip-all Remove all symbol and relocation information | 100 -s --strip-all Remove all symbol and relocation information |
101 -g -S -d --strip-debug Remove all debugging symbols & sections | 101 -g -S -d --strip-debug Remove all debugging symbols & sections |
102 -h --help Display this output | 102 -h --help Display this output |
103 --info List object formats & architectures supported | 103 --info List object formats & architectures supported |
104 -o <file> Place stripped output into <file> | 104 -o <file> Place stripped output into <file> |
105 | 105 |
106 %s: supported targets: bitcode, native code (see --info). | 106 %s: supported targets: bitcode, native code (see --info). |
107 """ % (script, script) | 107 """ % (script, script) |
OLD | NEW |