[root]/StandAlone/tools/compare_mms
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 26 (100.0%) | 72 (100.0%) | 2.7 |
jas | 21 (80.8%) | 46 (63.9%) | 2.1 |
dav | 3 (11.5%) | 24 (33.3%) | 8.0 |
luitjens | 2 (7.7%) | 2 (2.8%) | 1.0 |
Migrated a few more function calls to the new patch interface.
Deleted the old patch interface.
Removed __New() from the new patch interface calls.
2 lines of code changed in 2 files:
Allow for building 'sus' (et al) statically. Use the configure flag: --enable-static. For the most
part, you will not want a static build. However, in two cases you might:
1) To check for circular dependencies in the code. (Dynamic libs are forgiving in this regard.)
2) For machines that don't support shared libs (eg: AIX, some new micro-kernel Linux clusters, etc.)
Unfortunately when static linking, library order is important. There is no good way (that I know of)
to tell our build system to place the libs in a specific order, so I have hardcoded the libraries
that are necessary to static link each executable. (See CORE_STATIC_PSELIBS and CORE_STATIC_LIBS in
configVars.mk.)
Note, SUS previously build statically for AIX and Redstorm. A number of hard coded #defines for these
architectures have been replaced with more general code.
If a source code file needs to know that it is building statically (most won't, but some do), then it
will need to #include <sci_defs/compile_defs.h> and use the "STATIC_BUILD" #define'd var.
Some specific notes:
M testprograms/TestMatrix3/testmatrix3.cc
Since it is used in a library, it can't have a "main()" (as this causes two mains to show up when linking).
M configure.ac
- Go back to using 'autoconf' version 2.61 as the standard as it is available many places, and I can't
find 2.63 anywhere.
- Fixed a few uses of a $var that would cause shell script errors when not defined. (Placed it withing ""
so that it becomes an empty string (as opposed to a missing string).
22 lines of code changed in 2 files:
Compiler warnings.
Throw exceptions if call Patch::numFaces and Patch::invalidFace.
1 lines of code changed in 1 file:
Add c includes.
3 lines of code changed in 3 files:
Need teem (and png) lib to link.
2 lines of code changed in 1 file:
Use findBlockWithOutAttributes() when searching for MaterialProperties
to avoid finding the MaterialProperties add=true node.
This is second part of the changes needed to replace the
AddMaterialProperties with attribute add=true for MaterialProperties.
1 lines of code changed in 1 file:
Add (Z_LIBRARY) to sub.mk line.
1 lines of code changed in 1 file:
Remove the Packages/Uintah/
26 lines of code changed in 14 files:
Remove the Packages/Uintah/
14 lines of code changed in 1 file: