CodeLite installation/troubleshooting forum
sato
CodeLite Enthusiast
Posts: 18 Joined: Wed Jan 06, 2016 6:59 pm
Genuine User: Yes
IDE Question: c++
Contact:
Post
by sato » Mon May 02, 2016 6:23 pm
Code: Select all
console.log(util.format("QUIT: %s %s",player.username,enums.runnerStatus.properties[player.status].name));
crashes systematically when I want to modify text “QUIT” by “DROP”
eranif
CodeLite Plugin
Posts: 6375 Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:
Post
by eranif » Mon May 02, 2016 9:31 pm
Fixed in Git master.
Do you have an option to build from sources?
Thanks
sato
CodeLite Enthusiast
Posts: 18 Joined: Wed Jan 06, 2016 6:59 pm
Genuine User: Yes
IDE Question: c++
Contact:
Post
by sato » Mon May 02, 2016 10:27 pm
Code: Select all
git clone https://github.com/eranif/codelite.git
cd codelite
mkdir build-release
cd build-release
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release ..
make -j4
sudo make install
It's ok but when I start CodeLite, i have a crash now.
Last edited by
sato on Mon May 02, 2016 10:33 pm, edited 1 time in total.
sato
CodeLite Enthusiast
Posts: 18 Joined: Wed Jan 06, 2016 6:59 pm
Genuine User: Yes
IDE Question: c++
Contact:
Post
by sato » Mon May 02, 2016 10:32 pm
and then
and seem to be ok with:
Code: Select all
console.log(util.format("DROP: %s %s",player.username,enums.runnerStatus.properties[player.status].name));
No crash this time.
Thank!