make install arch linux

Discussion about CodeLite development process and patches
bechill
CodeLite Curious
Posts: 2
Joined: Wed Oct 10, 2012 5:45 am
Genuine User: Yes
IDE Question: c++
Contact:

make install arch linux

Post by bechill »

Code: Select all

@echo packaging wxWidgets ... from directory -pthread
@cd -pthread && tar cf /tmp/clwx294.tar libwx*.so* && tar xf /tmp/clwx2$
@rm -f /tmp/clwx294.tar
These lines are failing on the install target. I have been unable to get wx-config --libs | cut -d" " -f1 | cut -DL -f2 to give a directory. This just outputs -pthread. I'm not sure this is required, wx 2.9.4 is installed system wide, running configure with WXCONFIG=wx-config --version=2.9. Compiles beautifully, just won't install completely / error free because of this error, which causes my PKGBUILD (arch package) to fail.

output of wx-config-2.9:

Code: Select all

-pthread   -lwx_gtk2u_xrc-2.9 -lwx_gtk2u_html-2.9 -lwx_gtk2u_qa-2.9 -lwx_gtk2u_adv-2.9 -lwx_gtk2u_core-2.9 -lwx_baseu_xml-2.9 -lwx_baseu_net-2.9 -lwx_baseu-2.9 
User avatar
eranif
CodeLite Plugin
Posts: 6372
Joined: Wed Feb 06, 2008 9:29 pm
Genuine User: Yes
IDE Question: C++
Contact:

Re: make install arch linux

Post by eranif »

I fixed configure to check that "-L" is present before attempting to package wx libraries

Eran
Make sure you have read the HOW TO POST thread
bechill
CodeLite Curious
Posts: 2
Joined: Wed Oct 10, 2012 5:45 am
Genuine User: Yes
IDE Question: c++
Contact:

Re: make install arch linux

Post by bechill »

Thanks for the fix, works great now, package is codelite4-svn in the AUR for anyone interested.
Post Reply