12345678910111213141516171819202122232425262728 |
- REM StarPU --- Runtime system for heterogeneous multicore architectures.
- REM
- REM Copyright (C) 2013-2021 Université de Bordeaux, CNRS (LaBRI UMR 5800), Inria
- REM
- REM StarPU is free software; you can redistribute it and/or modify
- REM it under the terms of the GNU Lesser General Public License as published by
- REM the Free Software Foundation; either version 2.1 of the License, or (at
- REM your option) any later version.
- REM
- REM StarPU is distributed in the hope that it will be useful, but
- REM WITHOUT ANY WARRANTY; without even the implied warranty of
- REM MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
- REM
- REM See the GNU Lesser General Public License in COPYING.LGPL for more details.
- REM
- set oldPATH=%PATH%
- set PATH=C:\MinGW\msys\1.0\bin;c:\MinGW\bin;C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29333\bin\Hostx64\x64;C:\Users\Administrator\AppData\Local\Programs\Python\Python37-32;%PATH%
- sh -c "./job-1-build-windows.sh"
- set PATH=%oldPATH%
- set HWLOC=c:\StarPU\hwloc-win32-build-1.11.0
- cd starpu_install
- set STARPU_PATH=%cd%
- cd bin\msvc
- starpu_exec ../../share/doc/starpu/tutorial/hello_world_msvc.c
|