Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CLion settings. #256

Merged
merged 1 commit into from
Nov 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 27 additions & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -418,14 +418,17 @@ into the container again with the appropriate level of verbosity, e.g.

ssh -vvv -A 127.0.0.1 -p 3334

### CLion configuration (MacOS client)

* CLion > Settings > Build, Execution, Deployment > Toolchains
* CMake: /usr/bin/cmake
* Build Tools: /usr/bin/make
* Debugger: /opt/rh/gcc-toolset-13/root/usr/bin/gdb
* File > New project setup > Settings for new projects
* Editor > Code Style
### CLion 2024.3 configuration (MacOS client)

* CLion | Settings
* Build, Execution, Deployment | Toolchains
* CMake: /usr/bin/cmake
* Build Tools: /usr/bin/make
* Debugger: /opt/rh/gcc-toolset-13/root/usr/bin/gdb
* Advanced Settings (Host)
* Automatically import CMake Presets: None
* File | New project setup | Settings for new projects
* Editor | Code Style
* CMake
* continuation indent: 4
* C++
Expand All @@ -435,27 +438,30 @@ into the container again with the appropriate level of verbosity, e.g.
* CMake
* Cmake profile: Default (add new ones until Default appears, and disable all other profiles).
* Cmake build directory: .
* Build Tools > Make
* Build Tools | Make
* Path to make executable: /usr/bin/make

### CLion configuration (Linux client)

* Settings > Build, Execution, Deployment > Toolchains
* CMake: /usr/bin/cmake
* Build Tools: /usr/bin/make
* Debugger: /opt/rh/gcc-toolset-13/root/usr/bin/gdb
* File > New project setup > Settings for new projects
* Editor > Code Style
* C++
* continuation indent: 4
* Indent members of namespace: 0
### CLion 2024.3 configuration (Linux client)

* File | Settings
* Build, Execution, Deployment | Toolchains
* CMake: /usr/bin/cmake
* Build Tools: /usr/bin/make
* Debugger: /opt/rh/gcc-toolset-13/root/usr/bin/gdb
* Advanced Settings (Host)
* Automatically import CMake Presets: None
* File | New project setup | Settings for new projects
* Editor | Code Style
* CMake
* continuation indent: 4
* C++
* continuation indent: Single
* Indent members of namespace: Do not indent
* Build, Execution, Deployment
* CMake
* Cmake profile: Default (add new ones until Default appears, and disable all other profiles).
* Cmake build directory: .
* Build Tools > Make
* Build Tools | Make
* Path to make executable: /usr/bin/make

### Environment variable tuning to avoid excessive ccache miss rate
Expand Down