summaryrefslogtreecommitdiffstats
path: root/windows/fortran
Commit message (Collapse)AuthorAgeFilesLines
* [svn-r18430] Add windows define BIND_TO_CURRENT_VCLIBS_VERSION=1 to project ↵Allen Byrne2010-03-192-20/+20
| | | | | | | files. Corrected copy H5srcdir_str.h commands in script. Added libsettings project to behave like h5tinit.vcproj.
* [svn-r18360] Updated project files and release docs to VS2008 and IVF101 based.Allen Byrne2010-03-034-19/+16
| | | | | | Made change to cpp version of testhdf5 for the elimination of dsets standalone. Tested: Windows
* [svn-r17726] Updated the errorlevel checking for better error handling in ↵Allen Byrne2009-10-221-5/+16
| | | | the windows batch files.
* [svn-r17373] Added new file to library project.Allen Byrne2009-08-182-126/+0
| | | | | | Also removed unused project settings. These were per file settings that should not be used unless a file needs them. Tested: Windows
* [svn-r15126] Purpose: Cleanup unneeded Windows sourceScott Wegner2008-06-022-74/+0
| | | | | | | | | | | | Description: Previously, we maintained some source files that are commonly generated dynamically on other systems. Now, we also generate them on Windows as well. We should remove them from the repository so old versions are not accidentally used. Also, clean up the project files to organize generator programs. Tested: VS2005 on WinXP VS2005 on WinXP x64 VS.NET on WinXP
* [svn-r15094] Purpose: Cleanup Windows project files-- standardize program ↵Scott Wegner2008-05-292-2/+2
| | | | | | | | | | | | | debug information Description: 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. This is another project cleanup and enhancement from user suggestions outlined in bug #1164 Tested: VS2005 on WinXP VS.NET on WinXP
* [svn-r15093] Purpose: Cleanup Windows project files-- remove ignored system ↵Scott Wegner2008-05-2920-314/+314
| | | | | | | | | | | library Description: 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. Per a user's suggestion, we remove the ignored library from the project files. This actually makes no difference in the output binaries. Tested: VS2005 on WinXP VS.NET on WinXP
* [svn-r15057] Purpose: Fix Windows project libtestdll module pathScott Wegner2008-05-211-12/+12
| | | | | | | | Description: The source file tf.f90 now produces a module error_handler.mod, which was being created in a wrong directory. As a result, Visual Studio couldn't find it, and building failed. This corrects the module path of libtestdll project. Tested: VS2005 on WinXP
* [svn-r14975] Purpose: Add Windows fixes for new Fortran code.Scott Wegner2008-05-123-0/+106
| | | | | | | | Description: There were a number of small tweaks we needed to make to add the new fortran_1_8 code on Windows. We create new project files, add new source to them, add the test to our test suite, and fix a few typos in the Windows-specific source code. Tested: VS2005 on WinXP
* [svn-r14903] Undoing change committed in r14902.Scot Breitenfeld2008-04-3038-673/+674
|
* [svn-r14902] Merged fortran_1_8 branch changes r14505:14901 into the trunk. ↵Scot Breitenfeld2008-04-3038-674/+673
| | | | New fortran wrappers added.
* [svn-r14854] Purpose: Remove many spurious compiler warnings in Visual StudioScott Wegner2008-04-2110-141/+142
| | | | | | | | | | Description: On Windows, many POSIX functions have been replaced by a similarly-named function with some additional security-checking. Visual Studio issues a warning each time the POSIX version is used, recommending that we replace it with the new version. This results in thousands of errors when building the HDF5 library. This checkin adds a Visual Studio "Property Sheet", which has been applied to all library projects, and defines a number of preprocessors to suppress these warnings. The warnings have been disabled only in Visual Studio 2005 project files, as VS.NET doesn't support property sheets. Tested: VS2005 on WinXP
* [svn-r14841] Purpose: Fix Windows Fortran examples runtime librariesScott Wegner2008-04-1428-532/+532
| | | | | | | | | | Description: In the Windows Fortran example projects, the runtime library used for linking static-debug version was set incorrectly. This was a result of the project being upgraded from VS6 where we used Single-threaded libraries. Those libraries are no longer supported, so we use [Debug] Multithreaded [DLL] now instead. Note that this also needs to be updated in the VS.NET project files-- I will make those changes shortly. Tested: VS2005 on WinXP
* [svn-r14138] Scott Wegner2007-09-102-17/+89
|
* [svn-r14099] Purpose: Fix Windows libtest_cstubdll output directoryScott Wegner2007-08-221-4/+4
| | | | | | | | Description: Previously, the libtest_cstubdll project was creating the DLL in the project directory, rather than the Output directory. This was a simple typo, and not caught previously because past builds had the DLL installed. Cleaning up our batch files will make this easier to catch in the future. Tested: VS2005 on WinXP x64
* [svn-r14093] Purpose: Convert Windows projects to VS2005 format and support ↵Scott Wegner2007-08-1641-743/+2020
| | | | | | | | | | | 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-0936-174/+174
| | | | | | | | | | | | 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-r13922] Purpose: First step in VS6 DepreciationScott Wegner2007-06-2779-4345/+1721
| | | | | | | | | | | | | | | | | 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-r13258] Updated copyright notice in Windows batch files.Albert Cheng2007-02-071-2/+3
|
* [svn-r13256] Updated fortran source code with new THG copyright.Albert Cheng2007-02-071-2/+3
| | | | Tested: kagiso.
* [svn-r13253] Updated all C and C++ style source code files with the THG ↵Albert Cheng2007-02-071-2/+3
| | | | | | | | | copyright notice. Tested platform: Kagiso only since it is only a comment block change. If it works in one machine, it should work in all, I hope. Still need to check the parallel build on copper.
* [svn-r12464] Changed "eol-style" property on all Windows-specific files to ↵Quincey Koziol2006-07-1440-4361/+4361
| | | | | | be "CRLF" instead of "native".
* [svn-r12410] Purpose:MuQun Yang2006-06-121-1/+1
| | | | | | | | | | | | | | | | | | Update HDF5 Fortran90 type definition file on windows to reflect the changes in Linux. Description: INT has been changed to Fortran_INTEGER in the file. Solution: Make the change. Platforms tested: Visual fortran 6.6c with MSVS 6.0 Only affects windows. Misc. update:
* [svn-r12194] Purpose:Albert Cheng2006-04-031-1/+1
| | | | | | | | Typo. Description: Just fixed a typo in the copyright notice. Too trivial to require a test.
* [svn-r12188] Purpose:Fang Guo2006-03-311-1/+1
| | | | | | | | | | | Maintenance on Windows Description: Update source files which need mannually generated on Windows Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11873] Purpose:James Laird2006-01-091-1/+1
| | | | | | | | | | | | Copyright fix Description: The packet table examples were breaking the copyright checking script. Fixed them. Also caught a one-line copyright problem in another file. Platforms tested: Only changed comments.
* [svn-r11753] Purpose:Fang Guo2005-12-021-1/+1
| | | | | | | | | | Description: Solution: Platforms tested: Misc. update:
* [svn-r11667] Purpose:Albert Cheng2005-11-011-1/+1
| | | | Updated the copyright notices.
* [svn-r11660] Purpose:Fang Guo2005-11-011-1/+13
| | | | | | | | | | | add in copyright notice Description: Solution: Platforms tested: Windows XP Misc. update:
* [svn-r11406] Purpose:Fang Guo2005-09-132-0/+6
| | | | | | | | | | | | Maintenance on Windows Description: Changes made for windows due to the change of code H5f90i.h H5match_types.c Solution: Platforms tested: MSVS 6.0 On windows XP Misc. update:
* [svn-r11133] Purpose:Fang Guo2005-07-227-43/+43
| | | | | | | | | | | Update project setting Description: remove unuseless macro Solution: Platforms tested: MSVS 6.0 on windows XP Misc. update:
* [svn-r10864] Purpose:Fang Guo2005-06-061-1/+1
| | | | | | | | | | | Solve the name conflicts when building with intel fortran. Description: Rename release version of libtest_fortran.lib to libtest_fortranr.lib Solution: Platforms tested: Intel Fortran 8.1 on windows XP Misc. update:
* [svn-r10803] Purpose:Fang Guo2005-05-261-0/+2
| | | | | | | | | | | Update H5f90i_gen.h Description: Solution: Platforms tested: Compaq Fortran 6.6c on windows XP. Misc. update:
* [svn-r10697] Purpose:Fang Guo2005-04-291-23/+24
| | | | | | | | | | | Update fortran source code for windows. Description: Solution: Platforms tested: Misc. update:
* [svn-r10696] Purpose:Fang Guo2005-04-291-15/+15
| | | | | | | | | | | Update header files for windows Description: Solution: Platforms tested: Misc. update:
* [svn-r10663] Purpose:MuQun Yang2005-04-261-0/+33
| | | | | | | | | | | | | | | | Update windows fortran support Description: Currently an implementation of automatic generated fortran data type from C has been done for Linux/Unix platforms. For windows different implementation needs to be developed to make it consistent with the implementation on Linux/Unix. For the purpose of 1.8 release, we have to add a new header file. The checking program of the header file on windows will be generated on windows separately. Solution: Platforms tested: VS 6.0 on windows xp. Misc. update:
* [svn-r10496] Purpose:Fang Guo2005-03-291-0/+98
| | | | | | | | | | For windows support, remove all.zip form hdf5. Description Add fortran example project files into hdf5/windows/fortran Solution: Platforms tested: Comapq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10495] Purpose:Fang Guo2005-03-297-0/+679
| | | | | | | | | | | For windows support, remove all.zip form hdf5. Description: Add fortran example project files into hdf5/windows/fortran Solution: Platforms tested: Comapq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10494] Purpose:Fang Guo2005-03-291-0/+97
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran example project files into hdf5/windows/fortran. Solution: Platforms tested: Comapq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10493] Purpose:Fang Guo2005-03-291-0/+96
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran examples project files into hdf5/windows/fortran Solution: Platforms tested: Compaq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10492] Purpose:Fang Guo2005-03-291-0/+97
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran examples project file into hdf5/windows/fortran. Solution: Platforms tested: Comapq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10491] Purpose:Fang Guo2005-03-291-0/+96
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran examples project file into hdf5/windows/fortran. Solution: Platforms tested: Compaq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10490] Purpose:Fang Guo2005-03-291-0/+97
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran example project files into hdf5/windows/fortran Solution: Platforms tested: Compaq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10489] Purpose:Fang Guo2005-03-291-0/+96
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran project file into hdf5/windows. Solution: Platforms tested: Compaq Visual Fortran 6.0 Misc. update:
* [svn-r10488] Purpose:Fang Guo2005-03-291-0/+97
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran examples project file into hdf5/windows. Solution: Platforms tested: Compaq Visual Fortan 6.0 Misc. update:
* [svn-r10487] Purpose:Fang Guo2005-03-291-0/+97
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran examples project file into hdf5/windows. Solution: Platforms tested: Compaq Visual Fortran 6.0 on windows xp. Misc. update:
* [svn-r10486] Purpose:Fang Guo2005-03-291-0/+94
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran examples project file into hdf5/windows. Solution: Platforms tested: Compaq Visual Fortran on windows xp. Misc. update:
* [svn-r10485] Purpose:Fang Guo2005-03-291-0/+93
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran example project files into hdf5/windows. Solution: Platforms tested: Compaq Visual Fortan. Misc. update:
* [svn-r10484] Purpose:Fang Guo2005-03-291-0/+94
| | | | | | | | | | | For windows support, remove all.zip from hdf5. Description: Add fortran examples project file into hdf5/windows. Solution: Platforms tested: Compaq Visual Fortan 6.0 Misc. update:
* [svn-r10483] Purpose:Fang Guo2005-03-291-0/+93
| | | | | | | | | | Description: Solution: Platforms tested: Misc. update: