rawtherapee.com Forum Index rawtherapee.com
Support Forum
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Linux
Goto page Previous  1, 2, 3, 4  Next
 
Post new topic   Reply to topic    rawtherapee.com Forum Index -> Compiling RT from source
View previous topic :: View next topic  
Author Message
blk



Joined: 10 Jan 2010
Posts: 17

PostPosted: 14th Jan 2010, Thu, 20:25    Post subject: Reply with quote

mattdm wrote:

Should also include Pentax .pef and others....

yeah, the list is not exclusive.. i just took the ones i found in my /etc/mime.types because i know these are valid and i don't know the others
_________________
Everyday is a gift, that's why it's called the present.
Back to top
View user's profile Send private message
DrSlony



Joined: 02 Dec 2007
Posts: 934
Location: London, Rainy Kingdom

PostPosted: 14th Jan 2010, Thu, 20:47    Post subject: Reply with quote

I have added a link to the RT wiki to the first post. I think that I will write the HOWTOs there because many people can then edit them and keep them up to date, instead of just the forum moderators here.

This is still work in progress, the google code wiki does some strange things to code blocks when I put them into lists, gotta figure that out still.

http://code.google.com/p/rawtherapee/wiki/CompilingRTinLinux
Back to top
View user's profile Send private message Visit poster's website
Fer



Joined: 15 May 2008
Posts: 66
Location: Rome, Italy

PostPosted: 15th Jan 2010, Fri, 10:49    Post subject: Reply with quote

On my Ubuntu 9.10 32bit, compilation hangs on "bilateral2.cc".
I'm using svn trunk, checked today Jan 15th.

Any hint?

Thanks

Fernando
Back to top
View user's profile Send private message
Benjamin_L



Joined: 05 Nov 2008
Posts: 79

PostPosted: 15th Jan 2010, Fri, 11:51    Post subject: Reply with quote

See here http://rawtherapee.com/forum/viewtopic.php?t=1701 but no solution sorry
Back to top
View user's profile Send private message
Fer



Joined: 15 May 2008
Posts: 66
Location: Rome, Italy

PostPosted: 15th Jan 2010, Fri, 12:30    Post subject: Reply with quote

I see, thanks.
I tried downgrading gcc from 4.4.1 to 4.3.4 but still no joy. Too bad.

Fernando
Back to top
View user's profile Send private message
rinni



Joined: 13 Jan 2010
Posts: 5

PostPosted: 15th Jan 2010, Fri, 12:59    Post subject: Reply with quote

I set up a git repository for the debian package: http://github.com/rinni/RawTherapee-debian. To build it using git-buildpackage you have to use the option '--git-upstream-branch=dfsg_clean'.
Back to top
View user's profile Send private message
rinni



Joined: 13 Jan 2010
Posts: 5

PostPosted: 15th Jan 2010, Fri, 13:02    Post subject: Reply with quote

Fer wrote:
I see, thanks.
I tried downgrading gcc from 4.4.1 to 4.3.4 but still no joy. Too bad.

Fernando


I guess g++ 4.4 is still installed and the default so you should use:

Code:
cmake -DCMAKE_CXX_COMPILER=g++-4.3 -DCMAKE_CC_COMPILER=gcc-4.3 .
Back to top
View user's profile Send private message
Fer



Joined: 15 May 2008
Posts: 66
Location: Rome, Italy

PostPosted: 15th Jan 2010, Fri, 13:26    Post subject: Reply with quote

Excellent: indeed this was the case, I was just about replying to myself.
Smile

Fernando
Back to top
View user's profile Send private message
paul.matthijsse



Joined: 07 Oct 2008
Posts: 667
Location: Dieulefit, France

PostPosted: 15th Jan 2010, Fri, 15:23    Post subject: Reply with quote

rinni wrote:
I guess g++ 4.4 is still installed and the default so you should use:

Code:
cmake -DCMAKE_CXX_COMPILER=g++-4.3 -DCMAKE_CC_COMPILER=gcc-4.3 .


Thanks, that did the trick on my Ubuntu 9.10 32-bit!

Paul.
Back to top
View user's profile Send private message
tnorth



Joined: 07 Jan 2010
Posts: 49

PostPosted: 17th Jan 2010, Sun, 20:03    Post subject: Reply with quote

Problematic code seems to be this one:

Code:
void bilateral_signed (short** src, short** dst, short** buffer, Dim dim, double sigma, double sens) {

    bilateral<short, int> (src, dst, buffer, dim, sigma, sens);
}

void bilateral_box_unsigned (unsigned short** src, unsigned short** dst, int W, int H, int sigmar, double sigmas, bilateralparams row) {

    bilateral<unsigned short> (src, dst, W, H, sigmar, sigmas, row.row_from, row.row_to);
}


and the templates of bilateral2.h. Some code is commented out, maybe there is something wired there.
Back to top
View user's profile Send private message
Jacek Poplawski



Joined: 25 Mar 2009
Posts: 44

PostPosted: 26th Jan 2010, Tue, 02:04    Post subject: Reply with quote

This is bug in gcc, please read discussion on Arch Linux website:
http://aur.archlinux.org/packages.php?ID=11186
Back to top
View user's profile Send private message
Benjamin_L



Joined: 05 Nov 2008
Posts: 79

PostPosted: 26th Jan 2010, Tue, 05:52    Post subject: Reply with quote

and has already been fixed in 4.4.3 and latest 4.5. snapshot
Back to top
View user's profile Send private message
FM332



Joined: 23 Feb 2010
Posts: 6

PostPosted: 23rd Feb 2010, Tue, 18:07    Post subject: Reply with quote

Benjamin_L wrote:
and has already been fixed in 4.4.3 and latest 4.5. snapshot

Hello,
How to install gcc 4.4.3 ? It is not in ubuntu repositories, even with proposed and backports activated.
I found something on launchpad, https://launchpad.net/ubuntu/lucid/i386/gcc-4.4/4.4.3-2ubuntu1
but there are dependencies and i cant't find how to add repository.
The help says "Step 1: Visit the PPA's overview page in Launchpad and look for the heading that reads Adding this PPA to your system. Make a note of the PPA's location, which looks like:
ppa:gwibber-daily/ppa"
but i can't find this in the overview nor anywhere.
Back to top
View user's profile Send private message
blk



Joined: 10 Jan 2010
Posts: 17

PostPosted: 23rd Feb 2010, Tue, 18:32    Post subject: Reply with quote

FM332 wrote:
Benjamin_L wrote:
and has already been fixed in 4.4.3 and latest 4.5. snapshot

Hello,
How to install gcc 4.4.3 ? It is not in ubuntu repositories, even with proposed and backports activated.
I found something on launchpad, https://launchpad.net/ubuntu/lucid/i386/gcc-4.4/4.4.3-2ubuntu1
but there are dependencies and i cant't find how to add repository.
The help says "Step 1: Visit the PPA's overview page in Launchpad and look for the heading that reads Adding this PPA to your system. Make a note of the PPA's location, which looks like:
ppa:gwibber-daily/ppa"
but i can't find this in the overview nor anywhere.


you can add the repo with something like this (if the name is correct)
Quote:
sudo add-apt-repository ppa:gwibber-daily/ppa

_________________
Everyday is a gift, that's why it's called the present.
Back to top
View user's profile Send private message
FM33



Joined: 20 Sep 2009
Posts: 6

PostPosted: 23rd Feb 2010, Tue, 19:36    Post subject: Reply with quote

blk wrote:
you can add the repo with something like this (if the name is correct)
Quote:
sudo add-apt-repository ppa:gwibber-daily/ppa

ppa:gwibber-daily/ppa is an example in the help. I'm seeking for the PPA address where is the gcc 4.4.3 package
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    rawtherapee.com Forum Index -> Compiling RT from source All times are GMT
Goto page Previous  1, 2, 3, 4  Next
Page 2 of 4

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group