diff options
author | Andreas Kling <kling@serenityos.org> | 2020-10-12 11:38:50 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-10-12 19:53:25 +0200 |
commit | 75d5f436bc1863d0eb90af88b3f2c99e28d99f85 (patch) | |
tree | 805ef3c4fc4b7999cba44deaa68530c1cbb0376b /Documentation | |
parent | b82f2df4c8f135677f186e2133090d2ac97016c9 (diff) | |
download | serenity-75d5f436bc1863d0eb90af88b3f2c99e28d99f85.zip |
Toolchain: Upgrade to GCC 10.2.0
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/UsingQtCreator.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/UsingQtCreator.md b/Documentation/UsingQtCreator.md index fc771a137a..c2d7e662c6 100644 --- a/Documentation/UsingQtCreator.md +++ b/Documentation/UsingQtCreator.md @@ -15,7 +15,7 @@ First, make sure you have a working toolchain and can build and run SerenityOS. * Edit the `serenity.config` file (In Qt Creator, hit ^K or CMD+K on a Mac to open the search dialog, type the name of the file and hit return to open it) * Add the following `#define`s to the file: `DEBUG`, `SANITIZE_PTRS`, and `KERNEL`. Depending on what you are working on, you need to have that last define commented out. If you're planning on working in the userland, comment out `#define KERNEL`. If you're working on the Kernel, then uncomment `#define KERNEL`. * Edit the `serenity.cxxflags` file to say `-std=c++2a -m32` -* Edit the `serenity.includes` file, add the following lines: `.`, `..`, `../..`, `Services/`, `Libraries/`, `Libraries/LibC/`, `Libraries/LibPthread/`, `Libraries/LibM/`, `Toolchain/Local/i686-pc-serenity/include/c++/10.1.0`, `Build/Services/`, `Build/Libraries/`, `AK/` +* Edit the `serenity.includes` file, add the following lines: `.`, `..`, `../..`, `Services/`, `Libraries/`, `Libraries/LibC/`, `Libraries/LibPthread/`, `Libraries/LibM/`, `Toolchain/Local/i686-pc-serenity/include/c++/10.2.0`, `Build/Services/`, `Build/Libraries/`, `AK/` Qt Creator should be set up correctly now, go ahead and explore the project and try making changes. Have fun! :^) |