[Bug 1293024] Re: package doesn't provide c++ library

2014-07-31 Thread Mike Purvis
Yes, please bring libstdc++-arm-none-eabi-newlib into Trusty!

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-05-18 Thread Pere Tuset
I have the same problem in Ubuntu 14.04 LTS but have been able to fix it
by installing the libstdc++-arm-none-eabi-newlib package
(http://packages.ubuntu.com/utopic/libstdc++-arm-none-eabi-newlib) by
hand.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-05-10 Thread Jeremy Herbert
I can confirm this problem on a fresh install of Xubuntu 14.04 today.
The patch from keestux solves the problem for me.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-04-29 Thread keestux
This is a patch to create a package which installs the include files in
the directory where the compiler expects them.

** Patch added: 0001-Use-FULL-VER-instead-of-BASE-VER.patch
   
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+attachment/4100610/+files/0001-Use-FULL-VER-instead-of-BASE-VER.patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-04-29 Thread keestux
For the time being I have created my own package. I started with git clone of 
git://anonscm.debian.org/collab-maint/libstdc++-arm-none-eabi.git and commit 
a4128a0.
Next I applied a patch to change BASE-VER in FULL-VER. Maybe this is not 
exactly how it should be done, but I simply couldn't find another way.

Now the include directory of the installation is
/usr/include/newlib/c++/4.8.2 and arm-none-eabi-g++ is happy.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-04-29 Thread Ubuntu Foundations Team Bug Bot
The attachment 0001-Use-FULL-VER-instead-of-BASE-VER.patch seems to be
a patch.  If it isn't, please remove the patch flag from the
attachment, remove the patch tag, and if you are a member of the
~ubuntu-reviewers, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-04-28 Thread keestux
After installing libstc++-arm-none-eabi-newlib (4.8.2-16+1) I'm getting:
  fatal error: cstddef: No such file or directory

The reason is a mismatch between the compiler looking in
  /usr/lib/gcc/arm-none-eabi/4.8.2/../../../arm-none-eabi/include/c++/4.8.2
and that the libstc++ package installed the files in
  /usr/include/newlib/c++/4.8

That looks totally off but it is only 4.8 that should have been 4.8.2

For the curious among us.

$ ls -l /usr/lib/gcc/arm-none-eabi/4.8.2/../../../arm-none-eabi/include
lrwxrwxrwx 1 root root 43 Apr 21 22:54 
/usr/lib/gcc/arm-none-eabi/4.8.2/../../../arm-none-eabi/include - 
/etc/alternatives/gcc-arm-none-eabi-include

$ ls -l /etc/alternatives/gcc-arm-none-eabi-include
lrwxrwxrwx 1 root root 19 Apr 21 22:54 
/etc/alternatives/gcc-arm-none-eabi-include - /usr/include/newlib

$ ls -l /usr/include/newlib/c++
total 4
drwxr-xr-x 12 root root 4096 Apr 27 22:17 4.8

As a quick workaround I created a symlink

# ln -s 4.8 /usr/include/newlib/c++/4.8.2

Which of the two packages is configured incorrectly? gcc-arm-none-eabi
or libstdc++-arm-none-eabi-newlib?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-04-12 Thread mateczek
https://packages.debian.org/unstable/main/libstdc++-arm-none-eabi-newlib

On Ubuntu 14.4 there is a lack this package. After installing this
package, the sample project in C++  to build a successful

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1293024] Re: package doesn't provide c++ library

2014-04-09 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: gcc-arm-none-eabi (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1293024

Title:
  package doesn't provide c++ library

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gcc-arm-none-eabi/+bug/1293024/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs