]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/jit/docs/intro/tutorial01.rst
Update copyright years.
[thirdparty/gcc.git] / gcc / jit / docs / intro / tutorial01.rst
CommitLineData
8d9254fc 1.. Copyright (C) 2014-2020 Free Software Foundation, Inc.
35485da9
DM
2 Originally contributed by David Malcolm <dmalcolm@redhat.com>
3
4 This is free software: you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful, but
10 WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see
16 <http://www.gnu.org/licenses/>.
17
18.. default-domain:: c
19
20Tutorial part 1: "Hello world"
21==============================
22
23Before we look at the details of the API, let's look at building and
24running programs that use the library.
25
26Here's a toy "hello world" program that uses the library to synthesize
27a call to `printf` and uses it to write a message to stdout.
28
29Don't worry about the content of the program for now; we'll cover
30the details in later parts of this tutorial.
31
32 .. literalinclude:: ../examples/tut01-hello-world.c
33 :language: c
34
35Copy the above to `tut01-hello-world.c`.
36
37Assuming you have the jit library installed, build the test program
38using:
39
40.. code-block:: console
41
42 $ gcc \
43 tut01-hello-world.c \
44 -o tut01-hello-world \
45 -lgccjit
46
47You should then be able to run the built program:
48
49.. code-block:: console
50
51 $ ./tut01-hello-world
52 hello world