Skip to content

Commit

Permalink
Refs #8910 - Batch file for compilation.
Browse files Browse the repository at this point in the history
IMPORTANT:  This script requires two things to run properly:

1 - The dir of the python installation you want to use.  This will have to
be the installation you've modified with the msvccompiler.py files.

2 - It needs to be run using the "Intel Composer XE 2013 SP1 Intel(R) 64
Visual Studio 2012" command prompt, which, as you might imagine, needs
both Visual Studio 2012 and the Intel Fortran compiler.

32-bit compilations should be possible, as long as 32-bit versions of
Mantid's Python and the command prompt are used.
  • Loading branch information
PeterParker committed Feb 14, 2014
1 parent 5f27d92 commit b68a400
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions Fortran/Muon/MaxEnt/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.pyd
6 changes: 6 additions & 0 deletions Fortran/Muon/MaxEnt/compile.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
SET python=%1\python.exe
SET f2py=%1\Scripts\f2py.py

SET files=Back.for chinow.for chosol.for zft.for Deadfit.for dist.for fft.for FileDef.f90 input.for maxent.for Modab.for modamp.for modbak.for move.for Multimaxalpha.for opus.for output.for outspec.for project.for Start.for Tropus.for mantid.for

%python% %f2py% -c %files% --fcompiler=intelvem -m mantid_maxent

0 comments on commit b68a400

Please sign in to comment.