Karel Peeters
- 活动总数 25
- 最后的活动
- 成员加入日期
- 关注 0 名用户
- 关注者数 0 名用户
- 投票数 3
- 订阅数 9
-
创建于 Cannot compile newly crated Cuda project
已回答Hey, 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... -
创建于 Difference between temporary and permant run/debug configution
已回答The 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 ... -
已编辑于 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... -
已编辑于 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... -
已编辑于 "Start typing"-seach find next
已回答In 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... -
创建于 '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... -
创建于 Make backspace remove all spaces inserted by tab in custom languages
已回答I 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... -
已编辑于 Debugger display bits
已回答Is 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 ... -
已编辑于 Autocomplete for other file
已回答Let'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...