From: guido The deal.II FAQ
+
+
+
+ How do I change the compiler?
+
+ See the according
+ section in the readme file
+
+ Can I use/implement
+ triangles/tetrahedra in deal.II?
+
+ No, you cannot do either. The basic data structures are too much
+ tailored to quadrilaterals and hexahedra. Implementing other cells
+ amounts to re-implementing nearly all grid and DoF classes from
+ scratch.
+
+
+
\ No newline at end of file
diff --git a/deal.II/doc/navbar.html b/deal.II/doc/navbar.html
index bf3c575e08..37616d9a8c 100644
--- a/deal.II/doc/navbar.html
+++ b/deal.II/doc/navbar.html
@@ -21,6 +21,13 @@
+ + deal.II FAQ +
+diff --git a/deal.II/doc/platforms/sgi-irix.html b/deal.II/doc/platforms/sgi-irix.html index 3d6ded2cca..ffa83d2796 100644 --- a/deal.II/doc/platforms/sgi-irix.html +++ b/deal.II/doc/platforms/sgi-irix.html @@ -57,7 +57,7 @@ redefine LD_LIBRARY_PATH before execution of your program. Another possibility would be to used statically linked libraries instead of shared ones (see the - ReadMe file to + ReadMe file to find out how to do that).
diff --git a/deal.II/doc/readme.html b/deal.II/doc/readme.html index ca047d4481..43ca5ebbac 100644 --- a/deal.II/doc/readme.html +++ b/deal.II/doc/readme.html @@ -19,7 +19,7 @@@@ -369,9 +369,31 @@
- +configure
uses a wrong compiler, there are two
+ options: first, you can prepend your search path by the directory
+ of the desired compiler. If you do not want to do this (and there
+ are reasons), try the following: If your full compiler paths are
+ mycc and myc++ for your C and C++ compilers,
+ respectively, type into your csh:
+ + setenv CC mycc + setenv CXX myc++ + ./configure ++ or into your bash +
+ export CC=mycc + export CXX=myc++ + ./configure ++ +
Since the ISO C++ standard is still quite new and compilers still @@ -581,7 +603,7 @@ enables programs to use interprocess communication and many other related services using a platform independent interface. On how to enable using this library, see the section on - Configuration Options above. + Configuration Options above.