summaryrefslogtreecommitdiffstats
path: root/windows/hl
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r18424] Upgraded all project files to VS2008. Allen Byrne2010-03-1860-738/+568
| | | | | | Changed batch files by removing VS2005 and IVF91 options. Added libsettings project to behave like h5tinit.vcproj. Updated Manifest
* [svn-r18423] Add windows define BIND_TO_CURRENT_VCLIBS_VERSION=1 to project ↵Allen Byrne2010-03-1856-472/+472
| | | | files
* [svn-r18422] Description:Quincey Koziol2010-03-181-0/+22
| | | | | | | | | | | | | | | | | | | | | | | Bring r18413:18420 from trunk to 1.8 branch: - unify srcdir query, etc. - Move libhdf5.settings string out of H5Tinit.c Tested on: FreeBSD/32 6.3 (duty) in debug mode FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode Linux/32 2.6 (jam) w/PGI compilers, w/default API=1.8.x, w/C++ & FORTRAN, w/threadsafe, in debug mode Linux/64-amd64 2.6 (amani) w/Intel compilers, w/default API=1.6.x, w/C++ & FORTRAN, in production mode Solaris/32 2.10 (linew) w/deprecated symbols disabled, w/C++ & FORTRAN, w/szip filter, in production mode Linux/64-ia64 2.6 (cobalt) w/Intel compilers, w/C++ & FORTRAN, in production mode Linux/64-ia64 2.4 (tg-login3) w/parallel, w/FORTRAN, in debug mode Linux/64-amd64 2.6 (abe) w/parallel, w/FORTRAN, in production mode Mac OS X/32 10.6.2 (amazon) in debug mode Mac OS X/32 10.6.2 (amazon) w/C++ & FORTRAN, w/threadsafe, in production mode
* [svn-r17804] corrected examples test batch filesAllen Byrne2009-11-021-6/+6
|
* [svn-r17727] Updated the errorlevel checking for better error handling in ↵Allen Byrne2009-10-223-12/+48
| | | | the windows batch files.
* [svn-r15120] Purpose: Ignore Windows POSIX-Depreciation warnings in Visual ↵Scott Wegner2008-06-0216-64/+64
| | | | | | | | | | Studio 2005 Description: On Windows, we receive many compiler warnings because Microsoft has implemented many "security-enhanced" versions of POSIX functions. However, the old versions still exist, so the warnings can be ignored. By setting a preprocessor definition, we can disable many of these warnings. On a typical HDF5 build, this reduces the number of warnings from ~1500 to ~600 Tested: VS2005 on WinXP
* [svn-r15118] Purpose: Backport Windows project cleanup from trunk: remove ↵Scott Wegner2008-06-0261-84/+84
| | | | | | | | | | | | | | | | | ignored system library, standardize program debug information, and unify Windows h5tinit Description: These changes are made via a user's suggestion, bugzilla bug #1164. These have all been tested in the trunk, and are stable/favorable changes. In many of our project files on Windows, we have our linker setting set to ignore old link libraries-- either libc.lib or libcd.lib. This is a relic from converting project files from old versions of Visual Studio to newer ones, and is unnecessary. We remove the ignored library from the project files. This actually makes no difference in the output binaries. In our debug project configurations, many of the projects were generating debug information for "Program Database and Edit & Continue". Other projects were using different settings, or none at all. We standardize to use "Program Database" setting, because it generates much smaller .obj files and cuts out unnecessary debug information. Previously, there was Windows-dependent code inside H5detect.c, because not all projects could access the gethostname() function. However, we standardize our project-files to link with WS2_32.lib, so now this function is available. Thus, the Windows-specific code has been removed from H5detect.c. Tested: VS2005 on WinXP VS.NET on WinXP
* [svn-r14844] Purpose: Fix link input in Windows HL Fortran examplesScott Wegner2008-04-142-30/+30
| | | | | | | | | | Description: Previously, our Windows projects for HL Fortran examples were using outdated library names for our cstub code. As a result, they wouldn't build correctly. This checkin brings them up-to-date. Also, add hdf5_hl.lib as a dependency to hdf5_hl_fortran.lib. This goes un-noticed when building the complete VS solution, but should be required when only building hdf5_hl_fortran.lib Tested: VS2005 on WinXP
* [svn-r14669] Purpose: Remove old project files and folders to bring MANIFEST ↵Scott Wegner2008-02-2510-4571/+0
| | | | | | | up-to-date Description: Somehow these folders didn't get deleted in a previous checkin. This should bring things up-to-date
* [svn-r14668] Purpose: Backport of added Windows HL examples from trunkScott Wegner2008-02-2542-62/+15886
| | | | | Description: The Windows suite of examples for HL C was a very small subset of the examples that exist for other platforms. Now we have all of the HL C examples-- integrated into the VS projects files, and batch test scripts.
* [svn-r14265] Purpose: Bring Windows test scripts up to date for h5diff changes.Scott Wegner2007-11-191-2/+2
| | | | | | | | Description: Recently, the format of parameters for h5diff was changed. This checkin makes the neccessary changes for Windows to also bring it up to date. Tested: VS6 on WinXP
* [svn-r14138] Scott Wegner2007-09-107-172/+393
|
* [svn-r14093] Purpose: Convert Windows projects to VS2005 format and support ↵Scott Wegner2007-08-1638-1798/+9653
| | | | | | | | | | | 64-bit Fortran Description: This checkin is another Windows project cleanup, and also extends our Windows support for 64-bit Fortran. Project files are now in VS2005 format, rather than VS.NET. A couple projects have been renamed to be more descriptive (*cstub rather than *_lib), and project settings make better use of build macros. This will make them much easier to update in the future. Tested: VS2005 on WinXP 32-bit VS2005 on WinXP x64
* [svn-r14057] Purpose: Fixes for 64-bit Windows Intel Fortran 9.1Scott Wegner2007-08-098-56/+56
| | | | | | | | | | | | Description: We are porting Fortran to 64-bit Windows, and need to make many syntactical changes to bring the code up to date. We now go back to using "!DEC$" rather than "!MS$" in our "ATTRIBUTE" code. Also, the naming conventions for mixed language is inconsistent from 32- to 64- bit Windows. To make up with this, we use the "decorate" flag. We also needed to change the "calling convention" in project settings from "CVF" to "default". Also other minor cleanups on project files. Tested: 32-bit: VS.NET and VS2005 64-bit: VS2005
* [svn-r14036] Purpose: Fix Windows debug DLL naming schemeScott Wegner2007-08-037-7/+7
| | | | | | | | Description: At a previous seminar, it was brought up that the naming scheme for Windows debug DLL is inconsistent. Specifically, some use *ddll, while others use *dlld. *dlld is more widely-used, so we decided this is "correct". This changes others to use this scheme, and adapts other projects / install scripts / documentation. Tested: Visual Studio .NET on WinXP
* [svn-r14034] Purpose: Remove forced symbol "gethostname@8" from Windows projectsScott Wegner2007-08-021-2/+0
| | | | | | | | | | | | Description: Previously, we needed to force symbol definition "gethostname@8" for compatibility with old versions of Visual Studio. It appears that Visual Studio no longer requires this, so we remove it. This makes the build process on 64-bit much smoother. Also minor updates to main documentation, command-line documentation, and removed codewarrior and INTEL docs. Tested: VS.NET VS2005 chkmanifest
* [svn-r13922] Purpose: First step in VS6 DepreciationScott Wegner2007-06-2776-4017/+5214
| | | | | | | | | | | | | | | | | Desciption: This is the first major check-in in the process of depreciating Visual Studio 6.0. We create a new directory, windows_vs6, which now holds all of our previous VS6 project files. We expect to maintain this directory for only a short time (perhaps one release), so users have time to make the change. The ./windows directory now contains project files for Visual Studio .Net, as well as existing source and test scripts. This will allow us to greatly simplify the build process for the majority of our users. We have created a new solution (.Net equivolent of workspace) that houses the Fortran project files. This allowed us to remove these files from the main solution, as well as streamline the conversion in the Fortran solution. It is also much easier now to convert to Visual Studio 2005 files. Notes: I didn't update the MANIFEST with this check-in, I will make those changes shortly. Also, I haven't yet updated the documentation to reflect this check-in. That is going to require more work. We will be giving a seminar in the coming weeks about .Net and how to migrate over. Tested: VS6/VNET/VS2005 on WinXP 32/64-bit
* [svn-r13712] Various changes made to bring Windows example tests up to date.Scott Wegner2007-04-302-94/+4
| | | | | Tested: VS 2005 on Win XP
* [svn-r13667] Added Windows hl test script for gif2hf and h52gif testing to ↵Scott Wegner2007-04-152-1/+76
| | | | | | | | bring up to date with Linux. Updated MANIFEST for new file added. Tested: VS6 on Windows XP
* [svn-r13620] Old source file readhdf.c removed from Windows project files ↵Scott Wegner2007-04-092-16/+10
| | | | | | | h52gif and h52gifdll. Tested: VS6 and VS2005 on WinXP
* [svn-r13258] Updated copyright notice in Windows batch files.Albert Cheng2007-02-075-10/+15
|
* [svn-r13256] Updated fortran source code with new THG copyright.Albert Cheng2007-02-071-2/+3
| | | | Tested: kagiso.
* [svn-r12690] h5test.h and libtest.a are needed for high level test projects. ↵MuQun Yang2006-09-2712-82/+94
| | | | | | Windows projects need to be updated. Test with MSVS 6.0
* [svn-r12464] Changed "eol-style" property on all Windows-specific files to ↵Quincey Koziol2006-07-1443-4250/+4250
| | | | | | be "CRLF" instead of "native".
* [svn-r12178] Purpose:Fang Guo2006-03-302-20/+20
| | | | | | | | | | | | | Maintenance on Windows Description: Change dll projects output path and let output of dll projects generated into a separate directory from static projects Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12101] Purpose:Fang Guo2006-03-161-6/+7
| | | | | | | | | | | Maintenance on Windows Description: Changes on project settings Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12100] Purpose:Fang Guo2006-03-165-5/+5
| | | | | | | | | | | | Maintenance on Windows Description: Replace the old source code with the new check in Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12099] Purpose:Fang Guo2006-03-161-1/+1
| | | | | | | | | | | Maintenance on Windows Description: Replace the old source code with the new check in Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12037] Purpose:Fang Guo2006-03-072-0/+236
| | | | | | | | | | | Maintenance on Windows Description: Move gifconv project files Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12036] Purpose:Fang Guo2006-03-072-22/+58
| | | | | | | | | | | Maintenance on Windows Description: Changes on project settings Solution: Platforms tested: Misc. update:
* [svn-r12033] Purpose:Fang Guo2006-03-073-273/+0
| | | | | | | | | | | Maintenance on Windows Description: Remove duplicated source code files Solution: Platforms tested: Misc. update:
* [svn-r12031] Purpose:Fang Guo2006-03-071-3/+17
| | | | | | | | | | | Maintenance on Windows Description: Include more hl examples and batch file improvement Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12030] Purpose:Fang Guo2006-03-071-7/+67
| | | | | | | | | | | Maintenance on Windows Description: More hl examples added Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12029] Purpose:Fang Guo2006-03-072-0/+212
| | | | | | | | | | | Maintenance on Windows Description: Add in hl examples Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12028] Purpose:Fang Guo2006-03-071-0/+105
| | | | | | | | | | | Maintenance on Windows XP Description: Add in hl examples Solution: Platforms tested: Windows XP Misc. update:
* [svn-r12027] Purpose:Fang Guo2006-03-071-0/+107
| | | | | | | | | | | Maintenance on Windows Description: Add in hl examples Solution: Platforms tested: Misc. update:
* [svn-r12026] Purpose:Fang Guo2006-03-072-0/+202
| | | | | | | | | | | Maintenance on Windows Description: Move gifconv two project files Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11829] Purpose:Fang Guo2005-12-211-3/+6
| | | | | | | | | | | Maintenance on Windows Description: Fix an error Solution: Platforms tested: Misc. update:
* [svn-r11823] Purpose:Fang Guo2005-12-205-0/+528
| | | | | | | | | | | | move hl c examples to windows/hl/examples Description: Solution: Platforms tested: Misc. update:
* [svn-r11822] Purpose:Fang Guo2005-12-201-0/+107
| | | | | | | | | | | move hl c examples to windows/hl/examples Description: Solution: Platforms tested: Misc. update:
* [svn-r11819] Purpose:Fang Guo2005-12-203-243/+0
| | | | | | | | | | | Move hl c examples to windows/hl/examples Description: Solution: Platforms tested: Misc. update:
* [svn-r11818] Purpose:Fang Guo2005-12-202-211/+0
| | | | | | | | | | | Maintenance on Windows Description: move hl c examples to windows/hl/examples Solution: Platforms tested: Misc. update:
* [svn-r11817] Purpose:Fang Guo2005-12-201-105/+0
| | | | | | | | | | | Maintenance on Windows Description: Move hl c examples to hl/examples Solution: Platforms tested: Misc. update:
* [svn-r11816] Purpose:Fang Guo2005-12-201-107/+0
| | | | | | | | | | | maintenance on windows Description: move hl c examples to windows/hl/examples Solution: Platforms tested: Misc. update:
* [svn-r11815] Purpose:Fang Guo2005-12-201-105/+0
| | | | | | | | | | | Maintenance on Windows Description: Move hl c examples to windows/hl/examples Solution: Platforms tested: Misc. update:
* [svn-r11814] Purpose:Fang Guo2005-12-201-107/+0
| | | | | | | | | | | Windows Maintenance Description: move hl c examples to windows/hl/examples Solution: Platforms tested: Misc. update:
* [svn-r11813] Purpose:Fang Guo2005-12-203-273/+0
| | | | | | | | | | | Windows maintanence Description: move hl c examples to windows/hl/examples directory Solution: Platforms tested: Misc. update:
* [svn-r11812] Purpose:Fang Guo2005-12-201-0/+61
| | | | | | | | | | | Maintenance on windows Description: moving hl c examples to windows/hl/examples Solution: Platforms tested: Misc. update:
* [svn-r11811] Purpose:Fang Guo2005-12-202-18/+18
| | | | | | | | | | | maintenance on windows Description: move hl c examples to windows/hl/examples Solution: Platforms tested: Misc. update:
* [svn-r11810] Purpose:Fang Guo2005-12-201-9/+9
| | | | | | | | | | | Maintenace on Windows Description: move hl c examples to windows/hl/examples Solution: Platforms tested: Misc. update: