sbin/create_python_env.py
changeset 49 92e78a11e8df
parent 36 bbe6f42d42b2
child 50 012451a812f1
equal deleted inserted replaced
40:35d2eacbb4cb 49:92e78a11e8df
   162         system_str = platform.system()
   162         system_str = platform.system()
   163         if system_str == "Darwin":
   163         if system_str == "Darwin":
   164             if sys.version_info >= (2,6):
   164             if sys.version_info >= (2,6):
   165                 destination.write("JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 --arch i386\\n")
   165                 destination.write("JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 --arch i386\\n")
   166             else:
   166             else:
   167                 destination.write("JCC=$(PYTHON) -m jcc --shared --arch x86_64 --arch i386\\n")
   167                 destination.write("JCC=$(PYTHON) -m jcc --shared\\n")
   168             destination.write("NUM_FILES=2\\n")
   168             destination.write("NUM_FILES=2\\n")
   169         elif system_str == "Windows":
   169         elif system_str == "Windows":
   170             destination.write("JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 --arch i386\\n")
   170             destination.write("JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 --arch i386\\n")
   171             destination.write("NUM_FILES=2\\n")
   171             destination.write("NUM_FILES=2\\n")
   172         else:
   172         else: