Skip to content

Commit 075bf33

Browse files
committedAug 11, 2015
travis: use more recent libstdc++
1 parent b70b225 commit 075bf33

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

Diff for: ‎.travis.yml

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ language: python
22
python:
33
- '3.4'
44
sudo: false
5+
addons:
6+
apt:
7+
sources:
8+
- ubuntu-toolchain-r-test
9+
packages:
10+
- libstdc++6
511
env:
612
global:
713
- BUILD_SOC=1

5 commit comments

Comments
 (5)

jordens commented on Aug 11, 2015

@jordens
Member

If you need to build the llvmlite packages against GLIBCXX_3.4.20, this would need to go into the installation instructions as well. Trusty has GLIBCXX_3.4.19 max.

fallen commented on Aug 11, 2015

@fallen
ContributorAuthor

It's not a need, it's just that my linux-64 build machine happens to have a recent GLIBCXX (Debian Jessie).
So when using the package on Ubuntu LTS it does not work, unless you add the ppa repository as I did.
Is that an issue?
I should maybe add this trick to the installation instructions for those using Ubuntu LTS...

jordens commented on Aug 11, 2015

@jordens
Member

It's up to you. We just have to keep track of these things and either build llvmlite in a chroot/vm or keep tweaking travis and the installation instructions.

fallen commented on Aug 14, 2015

@fallen
ContributorAuthor

Done there 8669f1d

fallen commented on Aug 17, 2015

@fallen
ContributorAuthor

I rebuilt and uploaded llvmlite-artiq for linux-64 : built on Ubuntu 14.04 LTS.
That should fix the issue of needing a recent libstdc++

Please sign in to comment.