Skip to content
This repository was archived by the owner on Dec 31, 2021. It is now read-only.

Recompile

Doug Blank edited this page Jun 4, 2014 · 7 revisions

Recompiling with current version of IronPython and Visual Studio 2013

Assumptions:

  • Target version of IronPython is installed

  • Visual Studio 2013 is installed

Instructions:

  1. configure environment - set IRONPYTHON_HOME env variable to ipy.exe location, on win7 x64 default location is:

    C:\Program Files (x86)\IronPython 2.7
  2. get the source

    git clone [email protected]:paweljasinski/numpy-refactor.git
  3. recreate npy_config.h, in cmd window

    1. set compiler environment

      "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
    2. run build.py from libndarray/windows

      cd  numpy-refactor\libndarray\windows
      ipy build.py
  4. compile

    cd numpy-refactor
    ipy iron_setup.py

    If you are admin and can write to iron python directory, you are done. Otherwise you need to perform install step below.

  5. install, in another cmd shell, this time started as Administrator:

    cd numpy-refactor
    ipy iron_install.py
Clone this wiki locally