Skip to content

Commit 716cbc5

Browse files
drop 0.7
1 parent 51177ec commit 716cbc5

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.7
87
- 1.0
98
- 1.1
10-
- 1.2
9+
- 1.2
1110
- nightly
1211
matrix:
1312
allow_failures:

src/libfasttransforms.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,13 @@
1414
# Step 4: run `make` and check the tests by running `./test_drivers 3 3 0`.
1515
# All the errors should be roughly on the order of machine precision.
1616

17-
const libfasttransforms = joinpath(dirname(@__DIR__), "deps", "libfasttransforms")
17+
if Sys.isapple()
18+
const libfasttransforms = joinpath(dirname(@__DIR__), "deps", "libfasttransforms.dylib")
19+
20+
println("This is libfasttransforms: ", libfasttransforms)
21+
println("This is find_library(libfasttransforms): ", find_library(libfasttransforms))
22+
23+
end
1824

1925
if !(find_library(libfasttransforms) libfasttransforms)
2026
error("FastTransforms is not properly installed. Please run Pkg.build(\"FastTransforms\") ",

0 commit comments

Comments
 (0)