Log of /branches/ROBW_XPLATFORM/finley
Directory Listing
Revision
676 -
Directory Listing
Modified
Sun Mar 26 10:13:34 2006 UTC
(17 years ago)
by
robwdcock
+ Modified test SConscript dependencies to remove redundant call to explicit dependency
+ Modified scon_extensions.py - run unit tests (py and C++) now use scons::Execute rather than python os.system. This ensures the development environment
is used rather than the users environment to run the tests
+ SConstruct file now sets up LD_LIBRARY_PATH and PYTHONPATH to point to the current builds pyinstall and libinstall paths as required.
IT IS NO LONGER NECESSARY TO SET LD_LIBRARY_PATH and PYTHONPATH to point at your build outputs. Much safer in the presence of multiple checked out builds.
Under these circumstances you are better of using scons to run the tests rather than doing so directly. Easiest way to do this is to build the test output target for the test you want:
e.g. scons build/posix/bruce/test/python/ImportTest.passed
or if you prefer
cd build/posix/bruce/test/python
scons -u ImportTest.passed
Revision
673 -
Directory Listing
Modified
Sun Mar 26 07:16:42 2006 UTC
(17 years ago)
by
robwdcock
+ Added some svn:ignore properties so .pyc files aren't reported during svn status and friends
+ Removed esys directory. Build system will create the pyinstall/esys target and touch the __init__.py file in it as part of the build process. This means you can now direct scons to perform an install of the python directly into your desired location rather than just in the root of the source tree.
Revision
670 -
Directory Listing
Modified
Sat Mar 25 14:56:39 2006 UTC
(17 years ago)
by
robwdcock
+ Changed include paths to no longer require the cpp suffix (missed in earlier
commit)
+ modified tests so they no longer install to #/lib
Revision
668 -
Directory Listing
Modified
Sat Mar 25 13:27:27 2006 UTC
(17 years ago)
by
robwdcock
+ finally figured out why the tests failed when the python extension libs were
no longer sym links. The original setup for python extension modules was to
have sym links in the esys/* directories named, for example escriptcpp.so.
These would link to the actual libraries libescriptcpp.so. The lib*.so would
link to each other. When you replaced the symlink with a copy of the lib*.so
but renamed without the lib you would then get problems. In particular,
py_tests would suddenly start failing.
The problem appears (I've not been able to find documentary evidence to this
case) to be that when, for example, you import bruce, brucecpp.so imports
lib/libescriptcpp.so (which intialises escript python bits), bruce then
imports escriptcpp.so (which also initialised escript python bits).
Whether that is exactly correct or not is of interest but the important bit
is you appear to get two versions. After thinking about this for a bit and
reviewing a bunch of other examples of working python modules I noticed a
pattern. NONE of the other examples ever included more than the python
wrapper code in the python extension library. Instead they just link to
the pure C++ library. This would avoid the duplicate load.
So, I've refactored the code. If you consider escript the pattern in now:
lib/libescript.so - which has all of escript EXCEPT the python escriptcpp.cpp
esys/escript/escriptcpp.so - which has ONLY the escriptcpp.cpp and links to
lib/libescript.so
Run the tests and low and behold they all pass again.
Q: Why doesn't this problem occur with sym links?
A: My guess is that python and the dynamic linker take a look at the actual
absolute python of libraries to determine if its a "different" library.
I did fine some discussions that seem to suggest this.
Q: Why can't you just set LD_LIBRARY_PATH==PYTHONPATH and stick all the
libs in that directory?
A: I (in fact we, Peter Hornby was there) tried. With the renaming of the
python module so it doesn't have a lib prefix you get problems with
getting the shared libraries to be looked up in LD_LIBRARY_PATH. Do
the opposite and use lib on the python modules and you have problems
with windows which doesn't prepend the lib. Various combination
in between were also tried but you end up in a catch 22 situation so far
as I could tell
Please if you know more about the ins and outs of python and shared
libraries let me know if this isn't true. I'd really like to know if my
guesses are correct. In any event, the fix is more consistent with the
patterns I've seen
Phew! this was a long log message, glad it is on a branch!
Revision
667 -
Directory Listing
Modified
Fri Mar 24 13:25:00 2006 UTC
(17 years ago)
by
robwdcock
+ OUCH ARGHH
+ Okay the wizzy linkHack doesn't work. Not sure why but py_tests fail
when the shared library is on the link line directly (without a -l)
+ Unfortunately we can't figure out how to use -l without it prepending
a lib prefix. Hence all the shareable objects in python now need to be
called libblah.so (and lib will need to be prepended on windows!!!!).
This is not the python way and its very annoying. Why do we have this
problem? Because the C++ shared libraries link with each other.
Revision
666 -
Directory Listing
Modified
Fri Mar 24 11:29:40 2006 UTC
(17 years ago)
by
robwdcock
+ Fix up python esys area:
+ libraries are named without lib prefix on posix platforms (python standard)
+ libraries are now installed into the pyinstall area (python standard)
+ symlinks removed, no longer required
+ LD_LIBRARY_PATH is now optional for PYTHON programs (still required for c++)
+ lib PREFIX removal NOTES:
+ removing the lib prefix is non-standard for the linker. As such we've created a
custom function sharedLinkHack to specify the .so on the link command line
(as opposed to using -l<archive> which will prepend the lib). This has a
a small slight of hand for scons which was being to "helpful". Scons
verifies that when creating a shared libray all objects specified are
created shareable (e.g. ensure objects are compiler with -fPIC). Since
we are linking a .so out of the blue we had to wrap it up in a File note
and flag it as shared.
Easily done, once you know how. Thankfully this is all wrapped
up in a simple function (sharedLinkHack) that looks like ordinary scons so
you will never know!
Revision
664 -
Directory Listing
Modified
Fri Mar 24 09:28:36 2006 UTC
(17 years ago)
by
robwdcock
+Remove old unit test
Revision
661 -
Directory Listing
Modified
Fri Mar 24 09:13:00 2006 UTC
(17 years ago)
by
robwdcock
+py_tests now runs. Be patient, it is all of them!!
Revision
658 -
Directory Listing
Modified
Fri Mar 24 08:39:41 2006 UTC
(17 years ago)
by
robwdcock
+Linker is sensitive to library order. mkl_solver needs to be near the
end or paradiso_ goes missing
Revision
655 -
Directory Listing
Modified
Fri Mar 24 07:55:21 2006 UTC
(17 years ago)
by
robwdcock
# fix some lib flags
Revision
651 -
Directory Listing
Modified
Fri Mar 24 06:44:23 2006 UTC
(17 years ago)
by
robwdcock
+Python file now compile and install into pyinstall directory
Revision
649 -
Directory Listing
Modified
Fri Mar 24 06:07:07 2006 UTC
(17 years ago)
by
robwdcock
+Opps, helps if you include the two new files for Finley tests
Revision
648 -
Directory Listing
Modified
Fri Mar 24 06:04:57 2006 UTC
(17 years ago)
by
robwdcock
+Finely unit tests now running in build system
All C++ tests run and compile on Altix, I expect the same result for Linux so you may not see another log message for that.
Revision
647 -
Directory Listing
Modified
Fri Mar 24 05:23:05 2006 UTC
(17 years ago)
by
robwdcock
+ Prep for unit test consolidation consistent with other modules
NOTE: HBtest and MMtest appear to be stale tests and are not built using the scons system. They have been removed.
Revision
624 -
Directory Listing
Modified
Wed Mar 22 23:00:01 2006 UTC
(17 years ago)
by
robwdcock
+ Finish off the header file path changes
+ The C/C++ libraries now all compile on the ivec altix (cognac) using the xplatform build system
Revision
623 -
Directory Listing
Modified
Wed Mar 22 14:11:03 2006 UTC
(17 years ago)
by
robwdcock
Beginning of a fully cross-platform (win32+intelc, linux+g++, altix+intelc)
scons build system
WORK IN PROGRESS NOT COMPLETE
+Incorporates ideas from trunks scons build system and the RW_WIN32 branch
+New Header layout as include/<modulename>, hence the changes to the headers
+Not all modules or features from trunk build system are fully implemented
-Removes need for intermediary SConstruct files - the top SConstruct is more complex but handle cross-platform better AND the SConscript are a LOT simpler
and only differ slightly. It should be simpler to maintain
-Options are now handled via either a: config file supplied on command line, a config file in the scons/hostname_options.py, or as individual command line arguments
-Need help with options: scons -h will give you a list of options and their current settings
Revision
622 -
Directory Listing
Modified
Wed Mar 22 14:00:08 2006 UTC
(17 years ago)
by
robwdcock
Creating a private branch so I can test and verify cross-platform build
Revision
616 -
Directory Listing
Modified
Wed Mar 22 02:46:56 2006 UTC
(17 years ago)
by
elspeth
Original Path:
trunk/finley
Copyright added to more source files.
Revision
595 -
Directory Listing
Modified
Tue Mar 14 23:52:45 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk/finley
test_utilOnFinley fixed (did run the tests that still fail)
Revision
584 -
Directory Listing
Modified
Thu Mar 9 23:03:38 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk/finley
eigenvalues: compiles and passes tests on altix now
Revision
580 -
Directory Listing
Modified
Wed Mar 8 05:45:51 2006 UTC
(17 years ago)
by
gross
Original Path:
trunk/finley
faster version of the local eigenvalue calculation
Revision
558 -
Directory Listing
Modified
Thu Feb 23 01:02:31 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk/finley
switch back to test on no tagged data
Revision
552 -
Directory Listing
Modified
Wed Feb 22 03:18:07 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk/finley
and more work on saving the element jacobians (please don;t look at the code)
Revision
547 -
Directory Listing
Modified
Tue Feb 21 06:10:54 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk/finley
solution and reduced solution can have reference numbers now!
Revision
532 -
Directory Listing
Modified
Wed Feb 15 09:45:53 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk/finley
first steps towards the reuse of the element jacobians
Revision
521 -
Directory Listing
Modified
Tue Feb 14 05:50:56 2006 UTC
(17 years, 1 month ago)
by
gross
Original Path:
trunk/finley
now done test_utilOnFinley.py
Revision
484 -
Directory Listing
Modified
Thu Feb 2 02:12:08 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk/finley
add remainder of includes to SConscript includes install
Revision
481 -
Directory Listing
Modified
Wed Feb 1 05:57:50 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk/finley
add mechanism to install .h files to inc directories
(still need to specify full lists of .h files to install)
Revision
480 -
Directory Listing
Modified
Wed Feb 1 05:15:12 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk/finley
rationalise #includes and forward declarations
Revision
474 -
Directory Listing
Modified
Mon Jan 30 04:23:44 2006 UTC
(17 years, 1 month ago)
by
jgs
Original Path:
trunk/finley
restructure escript source tree
move src/Data/* -> src
remove inc
modify #includes and cpppath settings accordingly
Revision
473 -
Directory Listing
Modified
Fri Jan 27 01:59:09 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
make adjustments to allow for new source tree structure
Revision
471 -
Directory Listing
Modified
Fri Jan 27 01:33:02 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
reorganise finley src tree to remove inc dir and src/finley directory
Revision
468 -
Directory Listing
Modified
Wed Jan 25 06:50:39 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
reorganised esysUtils to remove inc directory
Revision
467 -
Directory Listing
Modified
Wed Jan 25 05:43:46 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
adjustments to includes to allow for new paso src tree structure
Revision
464 -
Directory Listing
Modified
Wed Jan 25 00:42:41 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
typo fixed: the anisotropic problems are returneing the correct answer now.
Revision
457 -
Directory Listing
Modified
Tue Jan 24 06:13:03 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
fix installation to directories specified by pyinstall and libinstall
Revision
455 -
Directory Listing
Modified
Tue Jan 24 04:36:54 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
minor comment and formatting changes
Revision
454 -
Directory Listing
Modified
Tue Jan 24 01:34:31 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
replace libdir default settings - SConstruct was broken without them
Revision
450 -
Directory Listing
Modified
Mon Jan 23 05:04:45 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
remove old make based build system
Revision
449 -
Directory Listing
Modified
Mon Jan 23 03:48:51 2006 UTC
(17 years, 2 months ago)
by
jgs
Original Path:
trunk/finley
finley source directories now merged into one directory: src/finley
Revision
447 -
Directory Listing
Modified
Mon Jan 23 02:59:59 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
a simple linear elastic solver
Revision
442 -
Directory Listing
Modified
Fri Jan 20 04:39:43 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
kronecker (and relatives) take now a FunctionSpace as argument and return a Data object in tthis functionspace
Revision
437 -
Directory Listing
Modified
Fri Jan 20 00:16:58 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
comprehensive testing for integrate function added. tests for grad will be added in the next check in. GradTest is obsolete now.
Revision
430 -
Directory Listing
Modified
Wed Jan 11 06:40:50 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
ILU has been replicated is called RILU (recursive ILU) now. ILU will now be reimplemented.
Revision
428 -
Directory Listing
Modified
Wed Jan 11 01:38:16 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
interplotared is changed from method to function call
Revision
425 -
Directory Listing
Modified
Tue Jan 10 04:10:39 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
The sparse solver can be called by paso now.
the building has been change to reduce some code redundancy:
now all scons SCscripts are importing scons/esys_options.py which
imports platform specific settings.
Revision
423 -
Directory Listing
Modified
Fri Jan 6 08:09:43 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
some modifications in visualization to get equidistant output
Revision
416 -
Directory Listing
Modified
Wed Jan 4 05:38:35 2006 UTC
(17 years, 2 months ago)
by
gross
Original Path:
trunk/finley
changes in Paso have been worked in
Revision
404 -
Directory Listing
Modified
Thu Dec 22 23:04:55 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
direct solver works for symmetry flag now
Revision
399 -
Directory Listing
Modified
Wed Dec 21 22:43:48 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
frame to run a single test out of the test_util suite
Revision
383 -
Directory Listing
Modified
Mon Dec 19 06:10:45 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
Finley options added plus some other stuff
Revision
381 -
Directory Listing
Modified
Mon Dec 19 03:15:44 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
first version of a finley benchmark suite for test the paso solver
Revision
362 -
Directory Listing
Modified
Thu Dec 15 02:07:55 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
removed unit-test runner scripts as unit-tests now run from scons
Revision
360 -
Directory Listing
Modified
Thu Dec 15 01:52:16 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
add target to run all unit tests, the build will fail
for this target if any unit test fails
Revision
355 -
Directory Listing
Modified
Wed Dec 14 05:05:31 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
add explicit target for building of unit tests
Revision
352 -
Directory Listing
Modified
Wed Dec 14 02:21:37 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
turns out Install() targets should also be made Default()
targets if you want them to actually reliably work!
Revision
340 -
Directory Listing
Modified
Mon Dec 12 05:10:45 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
pass in pyinstall value from top-level scons script and add
correct suffix in module level scons scipr
Revision
325 -
Directory Listing
Modified
Wed Dec 7 02:08:17 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
now determine hostname via socket.gethostname() as HOSTNAME
environment variable is apparently not set on all platforms
Revision
324 -
Directory Listing
Modified
Wed Dec 7 01:10:36 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
add symlinks to include files - previously added by hand as cvs couldn't
handle them
Revision
309 -
Directory Listing
Modified
Mon Dec 5 01:59:58 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
now load default options - by default!
Revision
294 -
Directory Listing
Modified
Fri Dec 2 03:47:30 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
test of symbols.py with python
Revision
288 -
Directory Listing
Modified
Fri Dec 2 01:55:04 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
now automatically build unit tests as required based on dependencies
between unit tests and libraries
Revision
277 -
Directory Listing
Modified
Wed Nov 30 04:52:39 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
explicitly define dependencies between modules
Revision
273 -
Directory Listing
Modified
Wed Nov 30 03:30:40 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
cast to float added. this avoids problems with very small values
Revision
272 -
Directory Listing
Modified
Wed Nov 30 03:30:30 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
cast to float added. this avoids problems with very small coodinates.
Revision
271 -
Directory Listing
Modified
Wed Nov 30 03:27:30 2005 UTC
(17 years, 3 months ago)
by
gross
Original Path:
trunk/finley
cast to float added. this avoids problems with very small values
Revision
268 -
Directory Listing
Modified
Wed Nov 30 01:39:47 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
setup scons configuration to make and install python code
Revision
255 -
Directory Listing
Modified
Tue Nov 29 06:13:22 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
pass in solver libraries to link with via options files now
Revision
252 -
Directory Listing
Modified
Tue Nov 29 05:58:03 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
pass in platform specific libraries via options files now
Revision
249 -
Directory Listing
Modified
Tue Nov 29 05:29:09 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
fix compiler options to enable compilation on gcc platforms
Revision
248 -
Directory Listing
Modified
Tue Nov 29 04:58:23 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
add top level scons config files to allow building
of all unit tests for each module at once
Revision
246 -
Directory Listing
Modified
Tue Nov 29 04:27:00 2005 UTC
(17 years, 3 months ago)
by
jgs
Original Path:
trunk/finley
allow compile options to be loaded from a config
file specified on the command line to scons
Revision
241 -
Directory Listing
Modified
Mon Nov 28 06:14:47 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
if usegcc=1 is set on command line, load compiler options
fropm scons/gcc_options.py
Revision
239 -
Directory Listing
Modified
Mon Nov 28 05:49:32 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
read names of python and boost libraries from config file now
Revision
228 -
Directory Listing
Modified
Fri Nov 25 02:01:14 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
now read compile options from options file
Revision
224 -
Directory Listing
Modified
Fri Nov 25 00:33:27 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
implement switching of debug compiler options based on command line flag 'debug'
Revision
223 -
Directory Listing
Modified
Thu Nov 24 23:12:13 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
pass in cc/cxx settings from config file
Revision
216 -
Directory Listing
Modified
Thu Nov 24 06:35:14 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
first pass at importing compile options from an external file'
Revision
214 -
Directory Listing
Modified
Thu Nov 24 05:15:26 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
collect all information needed to determine build
configuration (ie: debug/nodebug, host, platform etc)
Revision
206 -
Directory Listing
Modified
Wed Nov 23 05:03:42 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
remove MeshAdapter test for now - will only work with scons build system
Revision
205 -
Directory Listing
Modified
Wed Nov 23 05:02:59 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
fix settings to account for new finley source tree structure
Revision
204 -
Directory Listing
Modified
Wed Nov 23 04:43:51 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
revised scons files to account for new finley source tree structure
Revision
203 -
Directory Listing
Modified
Wed Nov 23 04:36:15 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
adjust include file names to allow for new finley source tree structure
Revision
202 -
Directory Listing
Modified
Wed Nov 23 04:18:39 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
scons builds will now take place in parallel "finley" src dir
Revision
201 -
Directory Listing
Modified
Wed Nov 23 04:10:21 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
copy finleyC and CPPAdapter to finley and finley/CPPAdapter to
facilitate scons builds
Revision
192 -
Directory Listing
Modified
Mon Nov 21 04:52:14 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
pass in top level install directory for finley/escript/bruce/paso
libraries when building via top level scons script
Revision
191 -
Directory Listing
Modified
Mon Nov 21 04:10:12 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
push platform dependent compiler flags and include directories up to library level scons files - these will eventually be brought in from external config files
Revision
190 -
Directory Listing
Modified
Mon Nov 21 03:27:42 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
pass in value for esysroot and use this to determine include file locations
Revision
188 -
Directory Listing
Modified
Mon Nov 21 01:20:26 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
explicitly add -fpic option to all compiler options lists
to ensure relocatable code is generated
Revision
183 -
Directory Listing
Modified
Fri Nov 18 05:24:37 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
can now build finleyC/finleycpp concurrently
Revision
182 -
Directory Listing
Modified
Fri Nov 18 05:07:36 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/finley
first draft of config/construct files for finleyC/finleycpp libraries
Revision
154 -
Directory Listing
Modified
Mon Nov 7 05:51:17 2005 UTC
(17 years, 4 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch dev-02 back to main trunk on 2005-11-07
Revision
153 -
Directory Listing
Modified
Tue Oct 25 01:51:20 2005 UTC
(17 years, 5 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch dev-02 back to main trunk on 2005-10-25
Revision
152 -
Directory Listing
Modified
Fri Oct 21 08:32:21 2005 UTC
(17 years, 5 months ago)
by
phornby
Original Path:
trunk/esys2/finley
DataConstantTestCase.cpp, DataExpandedTestCase.cpp:
Replace
DataExpanded testData1(FunctionSpace(),....)
with
FunctionSpace tmp_fns;
DataExpanded testData1(tmp_fns,shape,data);
for GCC's sake.
Added some profiling to PoissonSolverTest.py.
Revision
151 -
Directory Listing
Modified
Thu Sep 22 01:55:00 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch dev-02 back to main trunk on 2005-09-22
Revision
150 -
Directory Listing
Modified
Thu Sep 15 03:44:45 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch dev-02 back to main trunk on 2005-09-15
Revision
149 -
Directory Listing
Modified
Thu Sep 1 03:31:39 2005 UTC
(17 years, 6 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch dev-02 back to main trunk on 2005-09-01
Revision
148 -
Directory Listing
Modified
Tue Aug 23 01:24:31 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch dev-02 back to main trunk on 2005-08-23
Revision
147 -
Directory Listing
Modified
Fri Aug 12 01:45:47 2005 UTC
(17 years, 7 months ago)
by
jgs
Original Path:
trunk/esys2/finley
erge of development branch dev-02 back to main trunk on 2005-08-12
Revision
146 -
Directory Listing
Modified
Fri Jul 29 01:44:29 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk/esys2/finley
First merge of development branch dev-02 back to main trunk on 2005-07-29
Revision
141 -
Directory Listing
Modified
Mon Jul 25 05:15:41 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk/esys2/finley
fixed to work with new python source/install directory structure
Revision
126 -
Directory Listing
Modified
Fri Jul 22 03:53:08 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch back to main trunk on 2005-07-22
Revision
123 -
Directory Listing
Modified
Fri Jul 8 04:08:13 2005 UTC
(17 years, 8 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch back to main trunk on 2005-07-08
Revision
122 -
Directory Listing
Modified
Thu Jun 9 05:38:05 2005 UTC
(17 years, 9 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch back to main trunk on 2005-06-09
Revision
121 -
Directory Listing
Modified
Fri May 6 04:26:16 2005 UTC
(17 years, 10 months ago)
by
jgs
Original Path:
trunk/esys2/finley
Merge of development branch back to main trunk on 2005-05-06