Karel Peeters
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 3
- Subscriptions 9
-
Created Cannot compile newly crated Cuda project
AnsweredHey, I'm trying to start a Cuda project with CLion. I'm on Windows 11, using the Visual Studio toolchain: nvcc is on the path: > nvcc --versionnvcc: NVIDIA (R) Cuda compiler driverCopyright (c) 20... -
Created Difference between temporary and permant run/debug configution
AnsweredThe help page about run/debug configurations (https://www.jetbrains.com/help/idea/creating-and-saving-temporary-run-debug-configurations.html) says the following: Temporary run/debug configuration ... -
Edited Using clang compiler trough cygwin64 results in error "cannot find -liconv"
I'm trying to use clang as my C and C++ compiler in CLion. I installed cygwin64, installed the packages listed here https://www.jetbrains.com/help/clion/quick-tutorial-on-configuring-clion-on-windo... -
Edited Fernflower: the first analytical decompiler - what does that mean?
I'm not sure if this is the best place to ask this, but since as I understand it Fernflower is a part of InteliJ Idea. The readme (https://github.com/JetBrains/intellij-community/tree/master/plugin... -
Edited "Start typing"-seach find next
AnsweredIn some settings dialogs you can just start typing and a little search box pops up that searches in the currently opened page, for example here in the top left: Two questions about this: What i... -
Created 'print' keyword can't be used as identifier in Python 2
When I try to use `print` in a lambda I get the error `'print' keyword can't be used as identifier in Python 2`: The code does run fine, and my project intepreter is set to `3.6`. PyCharm versio... -
Created Make backspace remove all spaces inserted by tab in custom languages
AnsweredI added my own file type (https://www.jetbrains.com/help/idea/creating-and-registering-file-types.html), and probably because of the global settings the tab key adds 4 spaces. When I press backspac... -
Edited Debugger display bits
AnsweredIs there a way to make the debugger display the binary representation of a number instead of the decimal one? I need this to effectively debug code that uses integers as bitsets rather than actual ... -
Edited Autocomplete for other file
AnsweredLet's say I have a file called foo.c: typedef struct { int value; } Foo; and another file called main.c: #include "foo.c" int main { Foo foo = {}; }; when I now sta...