mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
ef844be70d
Made change to cpp version of testhdf5 for the elimination of dsets standalone. Tested: Windows
338 lines
11 KiB
Batchfile
Executable File
338 lines
11 KiB
Batchfile
Executable File
@echo OFF
|
|
rem Copyright by The HDF Group.
|
|
rem Copyright by the Board of Trustees of the University of Illinois.
|
|
rem All rights reserved.
|
|
rem
|
|
rem This file is part of HDF5. The full HDF5 copyright notice, including
|
|
rem terms governing use, modification, and redistribution, is contained in
|
|
rem the files COPYING and Copyright.html. COPYING can be found at the root
|
|
rem of the source code distribution tree; Copyright.html can be found at the
|
|
rem root level of an installed copy of the electronic HDF5 document set and
|
|
rem is linked from the top-level documents page. It can also be found at
|
|
rem http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have
|
|
rem access to either file, you may request a copy from helphdfgroup.org.
|
|
|
|
|
|
rem File Name: hdf5build.bat
|
|
rem This batch file is used to build HDF5 Libraries and Tools.
|
|
rem This batch file takes the following options:
|
|
rem . /vs9 Build HDF5 using Visual Studio 2008
|
|
rem . /fort Build HDF5 with Fortran libraries
|
|
rem . /ivf101 Build HDF5 Fortran using Intel Visual Fortran 10.1
|
|
rem . /ivf111 Build HDF5 Fortran using Intel Visual Fortran 11.1
|
|
rem . /nodebug Note: Default is to build debug and release versions
|
|
rem . /useenv Build HDF5 using compiler settings defined
|
|
rem . in the environment, rather than the IDE.
|
|
rem . /? Help information
|
|
|
|
rem This batch file makes the following assumptions:
|
|
rem - The appropriate version of Visual Studio is installed and setup
|
|
rem - The directory structure is setup from a fresh source copy
|
|
rem - copy_hdf.bat has already been run from the ./windows directory
|
|
rem - Visual Studio already contains the required paths for external libraries
|
|
rem - szip and zlib DLLs are already placed in an accessible directory
|
|
rem - hdf5_ext_szip or hdf5_ext_zlib have been set accordingly
|
|
rem - if building with the /useenv option, szip and zlib paths have been added
|
|
rem to %include% and %libpath% as necessary.
|
|
rem - The target platform architecture is specified in the environment
|
|
rem variable PROCESSOR_ARCHITECTURE
|
|
|
|
rem By default, only C and C++ libraries are built.
|
|
|
|
setlocal enabledelayedexpansion
|
|
pushd %~dp0
|
|
|
|
set nerrors=0
|
|
if "%1"=="/?" goto help
|
|
set blddebug=debug
|
|
set bldrelease=release
|
|
goto main
|
|
|
|
rem Print a help message
|
|
:help
|
|
|
|
echo.Builds HDF5 Libraries and Tools.
|
|
echo.
|
|
echo.Usage: %~nx0 [OPTION]
|
|
echo.
|
|
echo. /vs9 Build HDF5 using Visual Studio 2008
|
|
echo. /fort Build HDF5 with Fortran libraries using the
|
|
echo. /ivf101 Build HDF5 Fortran using Intel Visual Fortran 10.1
|
|
echo. /ivf111 Build HDF5 Fortran using Intel Visual Fortran 11.1
|
|
echo. /nodebug Note: Default is to build debug and release versions
|
|
echo. /useenv Build HDF5 using compiler settings defined
|
|
echo. in the environment, rather than the IDE.
|
|
echo. /? Help information
|
|
|
|
exit /b 0
|
|
|
|
|
|
rem Parse through the parameters sent to file, and set appropriate variables
|
|
:parse_params
|
|
|
|
for %%a in (%*) do (
|
|
if "%%a"=="/vs8" (
|
|
rem Visual Studio 2005 no longer supported
|
|
call :help
|
|
exit /b 1
|
|
|
|
) else if "%%a"=="/vs9" (
|
|
rem Use Visual Studio 2008
|
|
set hdf5_vs2008=true
|
|
|
|
) else if "%%a"=="/fort" (
|
|
rem Enable Fortran
|
|
set hdf5_enablefortran=true
|
|
|
|
) else if "%%a"=="/ivf111" (
|
|
rem Enable Fortran
|
|
set hdf5_ivf111=true
|
|
|
|
) else if "%%a"=="/ivf101" (
|
|
rem Enable Fortran
|
|
set hdf5_ivf101=true
|
|
|
|
) else if "%%a"=="/ivf91" (
|
|
rem Enable Fortran
|
|
call :help
|
|
exit /b 1
|
|
|
|
) else if "%%a"=="/nodebug" (
|
|
rem Enable Fortran
|
|
set blddebug=
|
|
|
|
) else if "%%a"=="/useenv" (
|
|
rem Pass /useenv flag to devenv
|
|
set hdf5_useenv=true
|
|
|
|
) else if "%%a"=="/?" (
|
|
rem Set errorlevel 1 and send to help
|
|
call :help
|
|
exit /b 1
|
|
|
|
) else (
|
|
rem Set errorlevel 2 to send to help if we receive a bad parameter
|
|
echo.Unknown option: %%a
|
|
call :help
|
|
exit /b 2
|
|
)
|
|
)
|
|
|
|
exit /b 0
|
|
|
|
|
|
rem Setup our environment
|
|
:setup
|
|
|
|
rem Constants
|
|
|
|
echo.Setting up environment
|
|
|
|
rem Make sure /vs8 and /vs9 weren't specified together
|
|
if "%hdf5_vs2005%%hdf5_vs2008%"=="truetrue" (
|
|
echo.Error: /vs8 and /vs9 should not be specified together.
|
|
exit /b 1
|
|
)
|
|
|
|
rem Figure out which solution file to use based on configuration
|
|
if defined hdf5_vs2008 (
|
|
echo.Using Visual Studio 2008
|
|
if defined hdf5_enablefortran (
|
|
echo.Building Fortran projects enabled
|
|
set hdf5_sln="%CD%\windows\proj\all_fortran\all_fortran.sln"
|
|
) else (
|
|
set hdf5_sln="%CD%\windows\proj\all\all.sln"
|
|
)
|
|
)
|
|
|
|
|
|
rem Make sure PROCESSOR_ARCHITECURE is set to either x86 or AMD64
|
|
if "%PROCESSOR_ARCHITECTURE%"=="x86" (
|
|
set hdf5_platform=Win32
|
|
) else if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
|
|
set hdf5_platform=x64
|
|
) else (
|
|
echo.Error: Environment variable PROCESSOR_ARCHITECTURE should contain
|
|
echo.either x86 or AMD64
|
|
exit /b 1
|
|
)
|
|
|
|
rem Setup Visual Studio environment. By default, use the Visual Studio
|
|
rem 2005 environment.
|
|
|
|
set ccflags=
|
|
|
|
if defined hdf5_vs2008 (
|
|
if not defined hdf5_enablefortran (
|
|
if defined vs90comntools (
|
|
rem This sets the Visual Studio 2008 path and environment variables
|
|
if %hdf5_platform%==Win32 (
|
|
call "%vs90comntools%\..\..\VC\vcvarsall.bat" x86
|
|
) else (
|
|
call "%vs90comntools%\..\..\VC\vcvarsall.bat" x86_amd64
|
|
)
|
|
|
|
) else (
|
|
echo.Error: Cannot setup Visual Studio 2008 environment. Please
|
|
echo.make sure VS90COMNTOOLS is defined in the environment.
|
|
exit /b 1
|
|
)
|
|
|
|
) else (
|
|
if not defined hdf5_ivf101 (
|
|
echo.with Intel Visual Fortran 11.1
|
|
|
|
if defined ifort_compiler111 (
|
|
rem This sets the Intel Fortran 11.1 environment, as well as
|
|
rem setting the appropriate Visual Studio environment
|
|
|
|
if %hdf5_platform%==Win32 (
|
|
call "%ifort_compiler111%\Bin\IA32\ifortvars_ia32.bat"
|
|
) else (
|
|
call "%ifort_compiler111%\Bin\intel64\ifortvars_intel64.bat"
|
|
)
|
|
) else (
|
|
echo.Error: Cannot setup Intel Fortran 11.1 environment. Please
|
|
echo.make sure IFORT_COMPILER111 is defined in the environment.
|
|
exit /b 1
|
|
)
|
|
|
|
) else (
|
|
echo.with Intel Visual Fortran 10.1
|
|
|
|
if defined ifort_compiler10 (
|
|
rem This sets the Intel Fortran 10.1 environment, as well as
|
|
rem setting the appropriate Visual Studio environment
|
|
|
|
if %hdf5_platform%==Win32 (
|
|
call "%ifort_compiler10%\IA32\Bin\ifortvars.bat"
|
|
) else (
|
|
call "%ifort_compiler10%\em64t\Bin\ifortvars.bat"
|
|
)
|
|
) else (
|
|
echo.Error: Cannot setup Intel Fortran 10.1 environment. Please
|
|
echo.make sure IFORT_COMPILER10 is defined in the environment.
|
|
exit /b 1
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
if defined hdf5_useenv (
|
|
rem This will tell Visual Studio to use include, library, etc. paths
|
|
rem defined by %INCLUDE% %LIBPATH%, etc. Assume the user has already
|
|
rem added external library paths to these variables.
|
|
set ccflags=%ccflags% /useenv
|
|
)
|
|
|
|
exit /b 0
|
|
|
|
|
|
rem Upgrade the project files to the latest format for Visual Studio
|
|
:upgrade
|
|
|
|
echo.Upgrading project files
|
|
devenv %hdf5_sln% /Upgrade /NoLogo
|
|
|
|
exit /b
|
|
|
|
|
|
rem Build the HDF5 libraries. By default, C and C++ libraries are built.
|
|
:all
|
|
|
|
echo.Building HDF5
|
|
|
|
echo.*****************************************************************************
|
|
echo. Build HDF5 Library and Tools
|
|
echo.*****************************************************************************
|
|
echo.
|
|
|
|
rem Build both debug and release versions
|
|
for %%a in (%blddebug% %bldrelease%) DO (
|
|
echo.Building %hdf5_platform% %%a libraries...
|
|
devenv %hdf5_sln% %ccflags% /rebuild "%%a|%hdf5_platform%"
|
|
if not errorlevel 0 (
|
|
set /a nerrors=!nerrors!+1
|
|
echo. Building %%a FAILED
|
|
exit /b 1
|
|
) else if errorlevel 1 (
|
|
set /a nerrors=!nerrors!+1
|
|
echo. Building %%a FAILED
|
|
exit /b 1
|
|
)
|
|
)
|
|
|
|
exit /b
|
|
|
|
|
|
rem Handle errors
|
|
:error
|
|
|
|
rem For now, our error handling consists of setting nerrors and quitting
|
|
echo.HDF5 build failed.
|
|
set /a nerrors=%nerrors%+1
|
|
goto end
|
|
|
|
rem We'll never really get here, but we keep this line for consistency.
|
|
exit /b
|
|
|
|
|
|
rem This is where the magic happens
|
|
:main
|
|
|
|
call :parse_params %*
|
|
if not errorlevel 0 (
|
|
if errorlevel 1 (
|
|
rem This isn't an error case-- this means /? was specified. Simply
|
|
rem quit.
|
|
goto end
|
|
|
|
) else (
|
|
rem Error case.
|
|
echo.Error parsing parameters!
|
|
goto error
|
|
)
|
|
)
|
|
|
|
call :setup
|
|
if not errorlevel 0 (
|
|
echo.Error setting up build environment.
|
|
goto error
|
|
)
|
|
|
|
rem Upgrade the project files if needed
|
|
rem if defined hdf5_vs2008 (
|
|
rem call :upgrade
|
|
rem if not errorlevel 0 (
|
|
rem echo.Error upgrading project files!
|
|
rem goto error
|
|
rem )
|
|
rem )
|
|
|
|
echo.Building HDF5 Libraries and Tools
|
|
echo.
|
|
|
|
echo.*****************************************************************************
|
|
echo. Build HDF5 Libraries and Tools
|
|
echo.*****************************************************************************
|
|
echo.
|
|
|
|
|
|
call :all
|
|
if not errorlevel 0 (
|
|
echo.Error building HDF5 libraries!
|
|
goto error
|
|
) else if errorlevel 1 (
|
|
echo.Error building HDF5 libraries!
|
|
goto error
|
|
)
|
|
|
|
if "%nerrors%"=="0" (
|
|
echo. All HDF5 libraries and tools build successfully!
|
|
)
|
|
rem Fall through to end
|
|
|
|
:end
|
|
popd
|
|
endlocal & exit /b %nerrors%
|