Skip to content

Commit

Permalink
fix .travis.yml to use more recent gcc version
Browse files Browse the repository at this point in the history
  • Loading branch information
dpirch committed May 1, 2018
1 parent bde19dd commit 99fd86b
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 15 deletions.
19 changes: 11 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
language: c

sudo: required
os: linux
sudo: false
dist: trusty

before_install:
- sudo apt-get -qq update
- sudo apt-get install libsndfile1-dev

language: c
compiler: gcc-7
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- gcc-7
- libsndfile1-dev
script:
- autoreconf -i
- ./configure
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,17 @@ make
sudo make install
```

When building from the cloned git repository (instead of a downloaded release),
run `autoreconf -i` to create the missing *configure* script.

An optional example can be enabled enabled by `./configure --enable-examples`.
This requires libsndfile (http://www.mega-nerd.com/libsndfile/, e.g.
`apt install libsndfile1-dev`).
- When building from the cloned git repository (instead of a downloaded release),
run `autoreconf -i` to create the missing *configure* script.
- An optional example can be enabled enabled by `./configure --enable-examples`.
This requires libsndfile (http://www.mega-nerd.com/libsndfile/, e.g.
`apt install libsndfile1-dev`).

## Usage ##
The API is documented in the `include/fvad.h` header file. See also
`examples/fvadwav.h`.

## Development Notes ##
## Development notes ##
Recommended CFLAGS to turn on warnings: `-std=c11 -Wall -Wextra -Wpedantic`.
Tests can be run with `make check`.

Expand Down

0 comments on commit 99fd86b

Please sign in to comment.