summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/UsersGuide/RunningCactus.tex16
-rw-r--r--doc/UsersGuide/ThornWriters.tex6
2 files changed, 11 insertions, 11 deletions
diff --git a/doc/UsersGuide/RunningCactus.tex b/doc/UsersGuide/RunningCactus.tex
index c730dff3..9c60c836 100644
--- a/doc/UsersGuide/RunningCactus.tex
+++ b/doc/UsersGuide/RunningCactus.tex
@@ -523,6 +523,11 @@ options, although this behaviour will soon change.
All options may be specified in the options file, an a subset of them on
the command line.
+It is important to note that these methods cannot be used to, for example add
+options to the default values for {\tt CFLAGS}. Setting {\tt CFLAGS} in the
+configuration file, or the command line will overwrite completely the
+default values.
+
\subsection{Available options}
There are a plethora of available options.
@@ -622,7 +627,7 @@ values will be valid on all architectures.
\item {\tt REAL\_PRECISION}
[CL] Allowed values are 16,8,4 .
-\item {INTEGER\_PRECISION}
+\item {\tt INTEGER\_PRECISION}
[CL] Allowed values are 8,4 and 2 .
\end{itemize}
@@ -715,13 +720,8 @@ configuration, and preprocessed source files.
wher {\tt CONF} refers to the name of your configuration.
For a completely new configuration, this directory exists {\em
after} the first make phase.
-\item{} The {\em ThornList} can also contain the name of a
- CACTUS package. In this case all thorns of the package will be
- compiled into the executable.
-\item{} If the CCTK {\em cannot find a thorn} you specified, it will
- repartition you hard disk amd install Windows.
-\item{} {\em GNU make} is required. Error during the build ``{\tt missing
- seperator}'' are caused by using a different make command.
+\item{} If you see the error during the build ``{\tt missing
+ seperator}'' you are probably not using GNU make.
\item{} {\em The EDITOR environment variable}. You may not be aware of
this, but this thing very often exists and may be set by default to
something scary like vi. If you don't know how to use vi or wish to
diff --git a/doc/UsersGuide/ThornWriters.tex b/doc/UsersGuide/ThornWriters.tex
index e486d64c..a8df8976 100644
--- a/doc/UsersGuide/ThornWriters.tex
+++ b/doc/UsersGuide/ThornWriters.tex
@@ -55,9 +55,9 @@ Cactus supports the following fixed size data types
\hline
Data Type & Size (bytes) & Variable Type & Fortran Equivalent\\
\hline
+{\t CCTK\_INT2} & 2 & {\t CCTK\_VARIABLE\_INT2} & {\t integer*2}\\
{\t CCTK\_INT4} & 4 & {\t CCTK\_VARIABLE\_INT4} & {\t integer*4}\\
-{\t CCTK\_INT8} & 8 & {\t CCTK\_VARIABLE\_INT8} & {\t integer*8}\\
-{\t CCTK\_INT16} & 16& {\t CCTK\_VARIABLE\_INT16} & {\t integer*16}\\
+{\t CCTK\_INT8} & 8& {\t CCTK\_VARIABLE\_INT8} & {\t integer*8}\\
{\t CCTK\_REAL4} & 4 & {\t CCTK\_VARIABLE\_REAL4} & {\t real*4}\\
{\t CCTK\_REAL8} & 8 & {\t CCTK\_VARIABLE\_REAL8} & {\t real*8}\\
{\t CCTK\_REAL16} & 16& {\t CCTK\_VARIABLE\_REAL16} & {\t real*16}\\
@@ -102,9 +102,9 @@ data size is being used:
\begin{tabular}{|c|c|}
\hline
Data Type & {\t \#define}\\
+{\t CCTK\_INT2} & {\t CCTK\_INT\_PRECISION\_2} \\
{\t CCTK\_INT4} & {\t CCTK\_INT\_PRECISION\_4} \\
{\t CCTK\_INT8} & {\t CCTK\_INT\_PRECISION\_8} \\
-{\t CCTK\_INT16} & {\t CCTK\_INT\_PRECISION\_16} \\
{\t CCTK\_REAL4} & {\t CCTK\_REAL\_PRECISION\_4} \\
{\t CCTK\_REAL8} & {\t CCTK\_REAL\_PRECISION\_8} \\
{\t CCTK\_REAL16} & {\t CCTK\_REAL\_PRECISION\_16} \\