Skip to content

Commit 5516490

Browse files
committedNov 16, 2017
Remove the linking functionality
1 parent 357b0f2 commit 5516490

File tree

5 files changed

+2
-80
lines changed

5 files changed

+2
-80
lines changed
 

‎.travis.yml

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,13 @@
11
language: rust
22

3-
dist: trusty
4-
sudo: false
5-
63
os:
74
- linux
85
- osx
96

10-
cache: cargo
117
rust:
128
- stable
139
- beta
1410
- nightly
1511

16-
env:
17-
matrix:
18-
- FEATURE=accelerate
19-
- FEATURE=netlib
20-
- FEATURE=openblas
21-
22-
matrix:
23-
exclude:
24-
- os: linux
25-
env: FEATURE=accelerate
26-
27-
before_install:
28-
- curl https://stainless-steel.github.io/travis/fortran.sh | bash
29-
30-
script:
31-
- cargo test -vv --no-default-features --features=$FEATURE
32-
33-
addons:
34-
apt:
35-
packages:
36-
- gfortran
37-
3812
notifications:
3913
email: false

‎README.md

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -2,29 +2,6 @@
22

33
The package provides an interface to the [Linear Algebra PACKage][lapack].
44

5-
## Configuration
6-
7-
The underlying implementation of LAPACK to compile, if needed, and link to can
8-
be chosen among the following options:
9-
10-
* Apple’s [Accelerate framework][accelerate] (macOS only),
11-
* Netlib’s [reference implementation][netlib], and
12-
* [OpenBLAS][openblas] (default).
13-
14-
An implementation can be chosen using the package’s features as follows:
15-
16-
```toml
17-
[dependencies]
18-
# Apple’s Accelerate framework
19-
lapack = { version = "0.14", default-features = false, features = ["accelerate"] }
20-
# Netlib’s reference implementation
21-
lapack = { version = "0.14", default-features = false, features = ["netlib"] }
22-
# OpenBLAS
23-
lapack = { version = "0.14", default-features = false, features = ["openblas"] }
24-
# OpenBLAS
25-
lapack = { version = "0.14" }
26-
```
27-
285
## Example (C)
296

307
```rust
@@ -73,10 +50,7 @@ Your contribution is highly appreciated. Do not hesitate to open an issue or a
7350
pull request. Note that any contribution submitted for inclusion in the project
7451
will be licensed according to the terms given in [LICENSE.md](LICENSE.md).
7552

76-
[accelerate]: https://developer.apple.com/reference/accelerate
7753
[lapack]: https://en.wikipedia.org/wiki/LAPACK
78-
[netlib]: http://www.netlib.org/lapack
79-
[openblas]: http://www.openblas.net
8054

8155
[build-img]: https://travis-ci.org/stainless-steel/lapack.svg?branch=master
8256
[build-url]: https://travis-ci.org/stainless-steel/lapack

‎src/c.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! ## Example
44
//!
5-
//! ```
5+
//! ```no_run
66
//! use lapack::c::*;
77
//!
88
//! let n = 3;

‎src/fortran.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! ## Example
44
//!
5-
//! ```
5+
//! ```no_run
66
//! use lapack::fortran::*;
77
//!
88
//! let n = 3;

‎src/lib.rs

Lines changed: 0 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,6 @@
11
//! Interface to the [Linear Algebra PACKage][lapack].
22
//!
3-
//! ## Configuration
4-
//!
5-
//! The underlying implementation of LAPACK to compile, if needed, and link to
6-
//! can be chosen among the following options:
7-
//!
8-
//! * Apple’s [Accelerate framework][accelerate] (macOS only),
9-
//! * Netlib’s [reference implementation][netlib], and
10-
//! * [OpenBLAS][openblas] (default).
11-
//!
12-
//! An implementation can be chosen using the package’s features as follows:
13-
//!
14-
//! ```toml
15-
//! [dependencies]
16-
//! # Apple’s Accelerate framework
17-
//! lapack = { version = "0.14", default-features = false, features = ["accelerate"] }
18-
//! # Netlib’s reference implementation
19-
//! lapack = { version = "0.14", default-features = false, features = ["netlib"] }
20-
//! # OpenBLAS
21-
//! lapack = { version = "0.14", default-features = false, features = ["openblas"] }
22-
//! # OpenBLAS
23-
//! lapack = { version = "0.14" }
24-
//! ```
25-
//!
26-
//! [accelerate]: https://developer.apple.com/reference/accelerate
273
//! [lapack]: https://en.wikipedia.org/wiki/LAPACK
28-
//! [netlib]: http://www.netlib.org/lapack
29-
//! [openblas]: http://www.openblas.net
304
315
extern crate lapack_sys;
326
extern crate libc;

0 commit comments

Comments
 (0)