summaryrefslogtreecommitdiffstats
path: root/windows/hdf5build.BAT
blob: e2a062c4db813a326f2ce3b3d5742a0385e4a8b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
@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 .                    Note: Default is Visual Studio 2005

rem .  /fort         Build HDF5 with Fortran libraries

rem .   /ivf101             Build HDF5 Fortran using Intel Visual Fortran 10.1

rem .                       Note: Default is Intel Visual Fortran 9.1

rem .  /useenv           Build HDF5 using compiler settings defined

rem .                    in the environment, rather than the IDE.

rem .  /?                Help information

rem By Xuan Bai

rem Created: Aug. 16, 2004

rem Last Updated: Scott Wegner, 7/2/08


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

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.                       Note: Default is Visual Studio 2005

    echo.   /fort               Build HDF5 with Fortran libraries using the

    echo.                       Intel Fortran version specified, or 9.1 by default

    echo.   /ivf101             Build HDF5 Fortran using Intel Visual Fortran 10.1

    echo.                       Note: Default is Intel Visual Fortran 9.1

    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"=="/vs7" (
            rem Visual Studio .NET 2003 not supported
            rem Set errorlevel 1 and send to help
            call :help
            exit /b 1
            
        ) else if "%%a"=="/vs9" (

            rem Use Visual Studio .NET 2003

            set hdf5_vs2008=true

            

        ) else if "%%a"=="/fort" (
            rem Enable Fortran
            set hdf5_enablefortran=true
            
        ) else if "%%a"=="/ivf101" (

            rem Enable Fortran

            set hdf5_ivf101=true

            

        ) 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 Sanity check-- make sure VS.NET isn't specified with Fortran or x64

    if defined hdf5_vnet (

        if defined hdf5_enablefortran (

            echo.Error: Building Fortran libraries with Visual Studio .NET is unsupported

            exit /b 1

        )

        if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
            echo.Error: Building HDF5 on x64 with Visual Studio .NET is unsupported
            exit /b 1
        )
    )
    rem Make sure /vs7 and /vs9 weren't specified together
    if "%hdf5_vnet%%hdf5_vs2008%"=="truetrue" (

        echo.Error: /vs7 and /vs9 should not be specified together.

        exit /b 1

    )



    rem Figure out which solution file to use based on configuration

    if defined hdf5_vnet (

        echo.Using Visual Studio .NET 2003

        set hdf5_sln="%CD%\windows_vnet\proj\all\all.sln"
        
    ) else 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"
        )
        
    ) else (
        echo.Using Visual Studio 2005
        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_vnet (
        if defined vs71comntools (
            rem This sets the Visual Studio .NET path and environment variables
            call "%vs71comntools%\vsvars32.bat" 

        ) else (

            echo.Error: Cannot setup Visual Studio .NET 2003 environment.  Please

            echo.make sure VS71COMNTOOLS is defined in the environment.

            exit /b 1

        )

        

    ) else if defined hdf5_vs2008 (

        if not defined hdf5_enablefortran (

            if defined vs90comntools (

                rem This sets the Visual Studio 2005 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 (

            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

            )

        )

        

    ) else (

        rem Assume Visual Studio 2005

        if not defined hdf5_enablefortran (

            if defined vs80comntools (

                rem This sets the Visual Studio 2005 path and environment variables

                if %hdf5_platform%==Win32 (

                    call "%vs80comntools%\..\..\VC\vcvarsall.bat" x86
                ) else (
                    call "%vs80comntools%\..\..\VC\vcvarsall.bat" x86_amd64

                )



            ) else (

                echo.Error: Cannot setup Visual Studio 2005 environment.  Please

                echo.make sure VS80COMNTOOLS is defined in the environment.

                exit /b 1

            )

            

        ) else (

            if not defined hdf5_ivf101 (

                echo.with Intel Visual Fortran 9.1

                

                if defined ifort_compiler91 (

                    rem This sets the Intel Fortran 9.1 environment, as well as

                    rem setting the appropriate Visual Studio environment

                    

                    if %hdf5_platform%==Win32 (

                        call "%ifort_compiler91%\IA32\Bin\ifortvars.bat"
                    ) else (
                        call "%ifort_compiler91%\em64t\Bin\ifortvars.bat"

                    )

                ) else (

                    echo.Error: Cannot setup Intel Fortran 9.1 environment.  Please

                    echo.make sure IFORT_COMPILER91 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 (debug release) DO (

        echo.Building %hdf5_platform% %%a libraries...

        rem Only add hdf5_platform if not using Visual Studio .NET, because it doesn't like the syntax

        if defined hdf5_vnet (

            devenv %hdf5_sln% %ccflags% /rebuild %%a

        ) else (

            devenv %hdf5_sln% %ccflags% /rebuild "%%a|%hdf5_platform%"
        )
        if !errorlevel! neq 0 exit /b
    )

    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 %errorlevel% neq 0 (
        if !errorlevel! equ 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 %errorlevel% neq 0 (
        echo.Error setting up build environment.
        goto error
    )
    
    rem Upgrade the project files if needed
    if defined hdf5_vs2008 (
        call :upgrade
        if !errorlevel! neq 0 (
            echo.Error upgrading project files!
            goto error
        )
    )

    echo.Building HDF5 Libraries and Tools
    echo.

    echo.*****************************************************************************
    echo.                        Build HDF5 Libraries and Tools
    echo.*****************************************************************************
    echo.


    call :all
    if %errorlevel% neq 0 (
        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%