aboutsummaryrefslogtreecommitdiff
path: root/documentation/cxx
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/cxx')
-rw-r--r--documentation/cxx/hybrid/guide/index.xhtml7
1 files changed, 5 insertions, 2 deletions
diff --git a/documentation/cxx/hybrid/guide/index.xhtml b/documentation/cxx/hybrid/guide/index.xhtml
index 465f3d8..70d5d34 100644
--- a/documentation/cxx/hybrid/guide/index.xhtml
+++ b/documentation/cxx/hybrid/guide/index.xhtml
@@ -780,9 +780,12 @@ main (int argc, char* argv[])
</p>
<pre class="terminal">
-$ c++ -I.../libxsde -c driver.cxx hello-pskel.cxx hello-pimpl.cxx
-$ c++ -o driver driver.o hello-pskel.o hello-pimpl.o \
+$ c++ -I.../libxsde -c driver.cxx hello.cxx hello-pskel.cxx \
+ hello-pimpl.cxx
+
+$ c++ -o driver driver.o hello.o hello-pskel.o hello-pimpl.o \
.../libxsde/xsde/libxsde.a
+
$ ./driver hello.xml
Hello, sun!
Hello, moon!