Daily builds doesn't seem to update

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
7 messages Options
Reply | Threaded
Open this post in threaded view
|

Daily builds doesn't seem to update

Broomy
I'm happily using the daily builds versions of LibreCAD from ppa:librecad-dev/librecad-daily , but since decembre the 18th it doesn't seem to update. Am I doing something wrong?

Thanks in advance,

Broomy
Reply | Threaded
Open this post in threaded view
|

Re: Daily builds doesn't seem to update

Broomy
Maybe I'm the only one with this problem, but LibreCAD still doesn't seem to update.

This is what I've done:
sudo add-apt-repository ppa:librecad-dev/librecad-daily
sudo apt-get update
sudo apt-get upgrade

This is what LibreCAD reads in the "About" -tab:
Version: master
SCM Revision: 2.0.0rc3
Compiler: GNU GCC 4.6.3
Qt Version: 4.8.2
Compiled on: Dec 18 2013

I'm using Bodhi and kxstudio, both based on Ubuntu 12.04.

Am I doing something wrong?
Reply | Threaded
Open this post in threaded view
|

Re: Daily builds doesn't seem to update

dxli
Reply | Threaded
Open this post in threaded view
|

Re: Daily builds doesn't seem to update

R. van Twisk
Administrator

I spoke to Scott this morning,

and he was going to supply a fix. This seemed to happen with Ubuntu 12 that doesn’t 
suport c++11.

it’s likely because of something in common.pri.

We both got buzy with work so I am not sure if it’s fixed now, can anybody test that on ubuntu 12?




On Apr 23, 2014, at 1:29 PM, dxli [via LibreCAD] <[hidden email]> wrote:

have a look at:

https://launchpad.net/~librecad-dev/+archive/librecad-daily/


If you reply to this email, your message will be added to the discussion below:
http://forum.librecad.org/Daily-builds-doesn-t-seem-to-update-tp5709737p5709839.html
To start a new topic under Troubleshooting, email [hidden email]
To unsubscribe from LibreCAD, click here.
NAML

Reply | Threaded
Open this post in threaded view
|

Re: Daily builds doesn't seem to update

dxli
for gcc-4.6 and lower, use:

g++ -std=c++0x

for gcc-4.7 and higher, use:

g++ -std=c++11

Reply | Threaded
Open this post in threaded view
|

Re: Daily builds doesn't seem to update

maqifrnswa
It's working now. Like dxli said, since ubuntu 12.04 uses an older gcc, those flags had to be set. It'll resume updating daily!
Reply | Threaded
Open this post in threaded view
|

Re: Daily builds doesn't seem to update

Broomy
Great,

Thanks guys!