| 1 | @rem This file is part of the McStas neutron ray-trace simulation package
|
|---|
| 2 | @rem Copyright (C) 1997-2004, All rights reserved
|
|---|
| 3 | @rem Risoe National Laborartory, Roskilde, Denmark
|
|---|
| 4 | @rem Institut Laue Langevin, Grenoble, France
|
|---|
| 5 | @rem
|
|---|
| 6 | @rem This program is free software; you can redistribute it and/or modify
|
|---|
| 7 | @rem it under the terms of the GNU General Public License as published by
|
|---|
| 8 | @rem the Free Software Foundation; version 2 of the License.
|
|---|
| 9 | @rem
|
|---|
| 10 | @rem This program is distributed in the hope that it will be useful,
|
|---|
| 11 | @rem but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 12 | @rem MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 13 | @rem GNU General Public License for more details.
|
|---|
| 14 | @rem
|
|---|
| 15 | @rem You should have received a copy of the GNU General Public License
|
|---|
| 16 | @rem along with this program; if not, write to the Free Software
|
|---|
| 17 | @rem Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|---|
| 18 | @rem USA
|
|---|
| 19 | @rem
|
|---|
| 20 | @rem Batch for calling gcc with MPI options on Win32
|
|---|
| 21 | @rem
|
|---|
| 22 | @rem Configuration:
|
|---|
| 23 | @rem
|
|---|
| 24 | @rem Set -I and -L according to your installation of the MPICH2 libs
|
|---|
| 25 | @rem WARNING: The dev-cpp gcc compiler DISLIKES drive specification, e.g
|
|---|
| 26 | @rem -Ic:/someting will NOT work
|
|---|
| 27 |
|
|---|
| 28 | gcc %*% -I/progra~1/mpich2/include -L/progra~1/mpich2/lib -lmpi
|
|---|