Page 4 of 5

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Thu Aug 18, 2011 11:35 am
by frank_frl
eranif wrote:Hi Frank,

I managed to debug and fix this ("<>|" not working for 2.9.x) using Microsoft's on-screen keyboard with German keyboard enabled :)
Can you please build latest codelite from SVN and give it a try?

I would really appreciate your confirmation on the fix

Eran
Hi Eran,
I can confirm that it works now :D
Sorry that I couldn't help you with a backtrace, but I'm working on 3 projects simultaneously at the moment, so I'm really short of time.

Best regards

Frank

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Thu Aug 18, 2011 11:55 am
by eranif
frank_frl wrote:I can confirm that it works now
thanks for getting back to me on this one.

I submitted a patch to wxWidgets for this issue (to fix wxSTC)

http://trac.wxwidgets.org/ticket/13409

Eran

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Thu Aug 18, 2011 12:01 pm
by frank_frl
Hi Eran,

sorry, but there is still an other problem, the 'Return' key isn't working anymore now, where I can't say if this was already before your fix or introduced with it :(

Frank

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Thu Aug 18, 2011 12:47 pm
by eranif
I know, already fixed ...

(I hoped to fix it before you will notice it ;))
Eran

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Thu Aug 18, 2011 1:36 pm
by frank_frl
eranif wrote:I know, already fixed ...

(I hoped to fix it before you will notice it ;))
Eran
Works now :D

Frank

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Fri Aug 26, 2011 4:54 pm
by evstevemd
is there a way to specify wxWidgets directory on configure command.
configure --help have no such option
Thanks

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Fri Aug 26, 2011 5:14 pm
by eranif
evstevemd wrote:is there a way to specify wxWidgets directory on configure command.
configure --help have no such option
Under Windows its the first option ...
C:\Users\eran\software\codelite\ContinuousBuild>wx-config --help
Usage: wx-config [options]
Options:
--prefix[=DIR] Path of the wxWidgets installation (ie. C:\wxWidgets2.6.3)
--wxcfg[=DIR] Relative path of the build.cfg file (ie. gcc_dll\mswud)
--cflags Outputs all pre-processor and compiler flags.
--cxxflags Same as --cflags but for C++.
--rcflags Outputs all resource compiler flags. [UNTESTED]
--libs Outputs all linker flags.

--debug[=yes|no] Uses a debug configuration if found.
--unicode[=yes|no] Uses an unicode configuration if found.
--static[=yes|no] Uses a static configuration if found.
--universal[=yes|no] Uses an universal configuration if found.
--compiler[=gcc,dmc,vc] Selects the compiler.
--release Outputs the wxWidgets release number.
--version Outputs the wxWidgets version.
--basename Outputs the base name of the wxWidgets libraries.
--cc Outputs the name of the C compiler.
--cxx Outputs the name of the C++ compiler.
--ld Outputs the linker command.
-v Outputs the revision of wx-config.

Note that using --prefix is not needed if you have defined the
environmental variable WXWIN.

Also note that using --wxcfg is not needed if you have defined the
environmental variable WXCFG.
Eran

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Fri Aug 26, 2011 5:50 pm
by evstevemd
I'm compiling on Linux Box :oops:

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Fri Aug 26, 2011 5:56 pm
by eranif
This option is still the first, even under Linux:
eran@eran-ubuntu:~$ wx-config --help

wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--release] [--version-full]
[--list] [--selected-config] [--host=HOST] [--toolkit=TOOLKIT]
[--universal[=yes|no]] [--unicode[=yes|no]] [--debug[=yes|no]]
[--static[=yes|no]] [--version[=VERSION]] [--basename] [--cc]
[--cppflags] [--cflags] [--cxxflags] [--rescomp] [--libs] [--cxx]
[--ld] [--linkdeps] [--utility=UTIL] [LIB ...]
Eran

Re: [Windows] codelite is moving to wxwidgets 2.9.2

Posted: Fri Aug 26, 2011 6:12 pm
by evstevemd
so how do i compile it?

Code: Select all

cd CodeLiteDir/
./configure  /my/path/to/wx-config/wx-config 
make
sudo make install
Is it right way?