update drivers(solo4k, uno4k, ultimo4k)
[vuplus_openvuplus_3.0] / meta-openvuplus / recipes-devtools / python / python / 04-default-is-optimized.patch
1 Upstream-Status: Inappropriate [embedded specific]
2
3 Updated original patch for python 2.7.3
4
5 Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com>
6 2012/05/01
7
8
9 # when compiling for an embedded system, we need every bit of
10 # performance we can get. default to optimized with the option
11 # of opt-out.
12 # Signed-Off: Michael 'Mickey' Lauer <mickey@vanille-media.de>
13
14 Index: Python-2.7.3/Python/compile.c
15 ===================================================================
16 --- Python-2.7.3.orig/Python/compile.c
17 +++ Python-2.7.3/Python/compile.c
18 @@ -32,7 +32,7 @@
19  #include "symtable.h"
20  #include "opcode.h"
21  
22 -int Py_OptimizeFlag = 0;
23 +int Py_OptimizeFlag = 1;
24  
25  #define DEFAULT_BLOCK_SIZE 16
26  #define DEFAULT_BLOCKS 8
27 Index: Python-2.7.3/Modules/main.c
28 ===================================================================
29 --- Python-2.7.3.orig/Modules/main.c
30 +++ Python-2.7.3/Modules/main.c
31 @@ -40,7 +40,7 @@ static char **orig_argv;
32  static int  orig_argc;
33  
34  /* command line options */
35 -#define BASE_OPTS "3bBc:dEhiJm:OQ:RsStuUvVW:xX?"
36 +#define BASE_OPTS "3bBc:dEhiJm:NOQ:RsStuUvVW:xX?"
37  
38  #ifndef RISCOS
39  #define PROGRAM_OPTS BASE_OPTS
40 @@ -69,8 +69,7 @@ Options and arguments (and corresponding
41  static char *usage_2 = "\
42           if stdin does not appear to be a terminal; also PYTHONINSPECT=x\n\
43  -m mod : run library module as a script (terminates option list)\n\
44 --O     : optimize generated bytecode slightly; also PYTHONOPTIMIZE=x\n\
45 --OO    : remove doc-strings in addition to the -O optimizations\n\
46 +-N     : do NOT optimize generated bytecode\n\
47  -R     : use a pseudo-random salt to make hash() values of various types be\n\
48           unpredictable between separate invocations of the interpreter, as\n\
49           a defense against denial-of-service attacks\n\
50 @@ -365,8 +364,8 @@ Py_Main(int argc, char **argv)
51  
52          /* case 'J': reserved for Jython */
53  
54 -        case 'O':
55 -            Py_OptimizeFlag++;
56 +        case 'N':
57 +            Py_OptimizeFlag=0;
58              break;
59  
60          case 'B':