aboutsummaryrefslogtreecommitdiff
path: root/Practical2/report/implementation.tex
diff options
context:
space:
mode:
Diffstat (limited to 'Practical2/report/implementation.tex')
-rw-r--r--Practical2/report/implementation.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Practical2/report/implementation.tex b/Practical2/report/implementation.tex
index cc8a940..1a02b2d 100644
--- a/Practical2/report/implementation.tex
+++ b/Practical2/report/implementation.tex
@@ -13,7 +13,7 @@ In the \mintinline{c}{main} function we see how \autoref{lem:divide-by-5} can be
\subsection{Compilation}
\label{sec:implementation:compilation}
-Optimal results are achieved with \texttt{clang}, which is on average $25\%$ faster than \texttt{gcc}. In any case, the \texttt{-Ofast} flag should be used. It speeds up the program with a factor $4$ in the case of \texttt{clang} and a factor $3$ in the case of \texttt{gcc}.
+Optimal results are achieved with \texttt{clang}, which is on average $25\%$ faster than \texttt{gcc}\footnote{Using \texttt{-Ofast}.}. In any case, the \texttt{-Ofast} flag should be used. It speeds up the program with a factor $4$ in the case of \texttt{clang} and a factor $3$ in the case of \texttt{gcc}.
A Makefile accompanies the C code. If you don't have \texttt{clang} installed, you should install it. If you don't want to install it, use \mintinline{bash}{make CC=gcc}.