CL rev 3360 compile issue

Discussion about CodeLite development process and patches
cenix
CodeLite Enthusiast
Posts: 20
Joined: Wed Sep 24, 2008 9:49 pm

CL rev 3360 compile issue

Post by cenix »

When compiling rev 3360 of CodeLite, I ran into a compile error. Compiler couldn't find the checkdirtreectrl.h file.

To fix this, change
#include <checkdirtreectrl.h>

into
#include "checkdirtreectrl.h"

in LiteEditor/settersgetterstreectrl.h (line 4 I believe).
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: CL rev 3360 compile issue

Post by eranif »

Fixed. ( I found it strange that the compiler cant find it...)

Anyeays, committed to trunk.

Eran
Make sure you have read the HOW TO POST thread
cenix
CodeLite Enthusiast
Posts: 20
Joined: Wed Sep 24, 2008 9:49 pm

Re: CL rev 3360 compile issue

Post by cenix »

Maybe its irrelevant, but I'm using gcc 4.4.1 for ubuntu, on a x64 machine.

g++ (Ubuntu 4.4.1-4ubuntu8) 4.4.1.

Didn't test it on other machines though, it was an easy fix :mrgreen:
Post Reply