Skip to content

Commit f961ef2

Browse files
Sebastien PonceSebastien Ponce
authored andcommitted
last minute fixes before CERN session
1 parent 86a048d commit f961ef2

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

code/exercisesIntro.tex

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,11 @@
103103
\item you never start from scratch
104104
\end{itemize}
105105
\end{exampleblock}
106-
\begin{block}{Makefile}
106+
\begin{block}{Makefile / cmake}
107107
\begin{itemize}
108108
\item prepared Makefile for easy compilation
109109
\item ``make'' and ``make clean'' are available
110+
\item cmake is also supported
110111
\end{itemize}
111112
\end{block}
112113
\begin{alertblock}{solution subdirectory}
@@ -122,6 +123,7 @@
122123
\begin{itemize}
123124
\item Each exercise comes with a set of instructions in the course
124125
\item See for example exercise on polymorphism
126+
\item Also present in exercise subdir in markdown format
125127
\end{itemize}
126128
\begin{alertblock}{Exercise Time}
127129
\begin{itemize}
@@ -151,11 +153,11 @@
151153
\begin{itemize}
152154
\item g++ and make
153155
\begin{minted}[gobble=6]{shell}
154-
make ./hello
156+
make; ./hello
155157
\end{minted}
156158
\item valgrind, callgrind and X11
157159
\begin{minted}[gobble=6]{shell}
158-
valgrind --tool=callgrind ./hello kcachegrind
160+
valgrind --tool=callgrind ./hello; kcachegrind
159161
\end{minted}
160162
\item cppcheck
161163
\begin{minted}[gobble=6]{shell}

talk/introduction.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@
126126
\begin{itemize}
127127
\item strongly typed
128128
\item object oriented
129-
\item widely used (and teached)
129+
\item widely used (and taught)
130130
\item many available libraries
131131
\end{itemize}
132132
\end{block}

0 commit comments

Comments
 (0)