unable to build source on 64bit linux mint

Discussion about CodeLite development process and patches
xenonym
CodeLite Curious
Posts: 1
Joined: Sun May 13, 2012 12:02 am
Genuine User: Yes
IDE Question: c++
Contact:

unable to build source on 64bit linux mint

Post by xenonym »

when I try to build from the SVN source with the following commands; (on a 64bit i7 quad core machine)

Code: Select all

svn checkout https://codelite.svn.sourceforge.net/svnroot/codelite/trunk codelite
cd codelite/
./configure 
make -j8
I can not the do `sudo make install` as it complains "cp: cannot stat `Runtime/codelite': No such file or directory" (and its right there is no Runtime/codelite)
if I run make again then I get the following error:

Code: Select all

./sdk/clang/Linux/x86_64/lib/libclang.so: undefined reference to `posix_spawn@GLIBC_2.15'
./sdk/clang/Linux/x86_64/lib/libclang.so: undefined reference to `memcpy@GLIBC_2.14'
collect2: ld returned 1 exit status
make: *** [LiteEditor] Error 1
can anyone advise on what I need to do to get codelite to build from source ?
User avatar
eranif
CodeLite Plugin
Posts: 6373
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: unable to build source on 64bit linux mint

Post by eranif »

Run:

Code: Select all

./configure --without-clang
(unless you want to build clang for Mint)

Eran
Make sure you have read the HOW TO POST thread
DavidGH
CodeLite Plugin
Posts: 819
Joined: Wed Sep 03, 2008 7:26 pm
Contact:

Re: unable to build source on 64bit linux mint

Post by DavidGH »

Hi,

This should now be fixed by r5546. However I've not tested it on mint in particular, so please let me know if it still fails.

Regards,

David
Post Reply