diff options
author | Liav A <liavalb@gmail.com> | 2022-10-04 03:32:37 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-12-28 11:53:41 +0100 |
commit | 8c9128f36dbe1d7b19c768761ae015788d36efe5 (patch) | |
tree | 634bc424082aa2e6f66eba97c34353ac2e85c566 /Documentation/EmacsConfiguration.md | |
parent | feeb25bcee42b1d9a383fdf281a00ab2caa0bcc6 (diff) | |
download | serenity-8c9128f36dbe1d7b19c768761ae015788d36efe5.zip |
Documentation: Remove i686 support
Diffstat (limited to 'Documentation/EmacsConfiguration.md')
-rw-r--r-- | Documentation/EmacsConfiguration.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Documentation/EmacsConfiguration.md b/Documentation/EmacsConfiguration.md index 1abcc882f8..bde565b1d7 100644 --- a/Documentation/EmacsConfiguration.md +++ b/Documentation/EmacsConfiguration.md @@ -9,19 +9,19 @@ can use the following `.clangd` file placed in the project root: ```yaml CompileFlags: - CompilationDatabase: Build/i686 + CompilationDatabase: Build/x86_64 Add: - "-D__serenity__" - "-UNO_TLS" - - "-I/path/to/serenity/Toolchain/Local/i686/i686-pc-serenity/include/c++/12.1.0" - - "-I/path/to/serenity/Toolchain/Local/i686/i686-pc-serenity/include/c++/12.1.0/i686-pc-serenity" + - "-I/path/to/serenity/Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/12.1.0" + - "-I/path/to/serenity/Toolchain/Local/x86_64/x86_64-pc-serenity/include/c++/12.1.0/x86_64-pc-serenity" ``` You will need to change `/path/to/serenity` and change `12.1.0` to whatever your GCC toolchain version at the time is. Run cmake (`Meta/serenity.sh run` or similar) at least once for this -to work, as it will generate the `Build/i686/compile_commands.json` +to work, as it will generate the `Build/x86_64/compile_commands.json` that is needed by `clangd`. ### lsp-mode |