Codelite


 
Thread Tools Search this Thread
Top Forums Programming Codelite
# 1  
Old 10-21-2014
Codelite

I am trying to install Codelite on Debian Jessie. This is what I get
Code:
root@meow:/home/ethan/Downloads# dpkg -i wxcrafter_1.6-1.wheezy_amd64.deb
Selecting previously unselected package wxcrafter.
(Reading database ... 150976 files and directories currently installed.)
Preparing to unpack wxcrafter_1.6-1.wheezy_amd64.deb ...
Unpacking wxcrafter (1.6-1.wheezy) ...
Setting up wxcrafter (1.6-1.wheezy) ...
root@meow:/home/ethan/Downloads# which codelite
/usr/bin/codelite
root@meow:/home/ethan/Downloads# /usr/bin/codelite
/usr/bin/codelite: error while loading shared libraries: libclang.so.1: cannot open shared object file: No such file or directory

The problem seems to be libclang.so.1 Will a stable [wheezy] version work on testing[Jessie]? If not where are the files for Jessie?
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Graphics::Primitive::Insets(3pm)			User Contributed Perl Documentation			  Graphics::Primitive::Insets(3pm)

NAME
Graphics::Primitive::Insets - Space between things DESCRIPTION
Graphics::Primitive::Insets represents the amount of space that surrounds something. This object can be used to represent either padding or margins (in the CSS sense, one being inside the bounding box, the other being outside) SYNOPSIS
use Graphics::Primitive::Insets; my $insets = Graphics::Primitive::Insets->new({ top => 5, bottom => 5, left => 5, right => 5 }); METHODS
Constructor new Creates a new Graphics::Primitive::Insets. Instance Methods as_array Return these insets as an array in the form of top, right, bottom and left. bottom Set/Get the inset from the bottom. equal_to Determine if these Insets are equal to another. left Set/Get the inset from the left. right Set/Get the inset from the right. top Set/Get the inset from the top. zero Sets all the insets (top, left, bottom, right) to 0. AUTHOR
Cory Watson, "<gphat@cpan.org>" SEE ALSO
perl(1) COPYRIGHT &; LICENSE Copyright 2008-2010 by Cory G Watson. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2010-08-21 Graphics::Primitive::Insets(3pm)