Skip to content

Commit

Permalink
Actually fix build error on Julia 1.0[
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Feb 9, 2020
1 parent 513fc72 commit d4adb4d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function create_svmlwrap_file(mveclib)
if VERSION >= v"1.1"
sym = dlsym(lib, func, throw_error = false)
else
sym = dlsym_e(lib, func, throw_error = false)
sym = dlsym_e(lib, func)
end
if sym != C_NULL
typ = "Float$(isdouble ? 64 : 32)"
Expand All @@ -49,7 +49,7 @@ function create_svmlwrap_file(mveclib)
if VERSION >= v"1.1"
sym = dlsym(lib, func, throw_error = false)
else
sym = dlsym_e(lib, func, throw_error = false)
sym = dlsym_e(lib, func)
end
if sym != C_NULL
typ = "Float$(isdouble ? 64 : 32)"
Expand Down

2 comments on commit d4adb4d

@chriselrod
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/9103

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.5 -m "<description of version>" d4adb4d96ea25ac2c071efb4174c7365d7ede8a7
git push origin v0.3.5

Please sign in to comment.