Sławomir Zborowski

Results 10 comments of Sławomir Zborowski

I'm going to treat GitHub comments as chat from now on. This is because I have limited time, it's very late and I'm unsure when I will come back to...

@Semphriss it's `Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz` I created a paste with contents of /proc/cpuinfo here: https://pastebin.com/QcvL4CSu

> Since you said you have limited time and in case you're still here: -DCMAKE_BUILD_TYPE=Profile with uppercase P according to here. The absolute state of C++ and its ecosystem :smile_cat:...

I used `make VERBOSE=1` to see what CMake actually does. The `-pg` flag is there. I'm gonna check if `-g3` or something like that is required too. And also I'm...

FYI ``` hid@myass:~/repo/supertux/build$ nm supertux2 | grep -i gmon w __gmon_start__ ```

I found out that for 'hello, world' cmake following works, but still one has to pass extra params, so instead of `cmake ..` I had to type `cmake -DCMAKE_CXX_FLAGS=-pg -DCMAKE_EXE_LINKER_FLAGS=-pg...

I have `gmon.out` for SuperTux! Yay! :) Let's see what's inside in case you didn't solve it yet :) BTW I noticed that not only while being in menu it...

I cannot upload `gmon.out` file here unfortunately. I tried to upload results of `gprof supertux2 gmon.out > ImpfenMachtFrei.txt | xclip` but PasteBin didn't accept it (because of its size). I...

The only thing I managed to do is to pinpoint one of the biggest consumers of time using kcachegrind. I am still willing to work on this. I need to...

@Semphriss I think I'm at the point where I need some help or at least guidance. My findings so far are: First one is that it actually doesn't matter whether...