-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring code to provide high-level SymNext and SymDefault APIs.
- Loading branch information
Showing
7 changed files
with
209 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,22 @@ | ||
# dl | ||
# About dl [![GoDoc][1]][2] | ||
|
||
Runtime dynamic library loader (dlopen / dlsym) for Go (golang) | ||
Runtime dynamic library loader (`dlopen`) for Go. | ||
|
||
To install dl run the following command: | ||
## Installing | ||
|
||
Install in the usual Go fashion: | ||
|
||
```sh | ||
$ go get -u github.com/rainycape/dl | ||
``` | ||
go get github.com/rainycape/dl | ||
|
||
## Running Tests | ||
|
||
`cgocheck` needs to be disabled in order to run the tests: | ||
|
||
```sh | ||
$ GODEBUG=cgocheck=0 go test -v | ||
``` | ||
[![GoDoc](https://godoc.org/github.com/rainycape/dl?status.svg)](https://godoc.org/github.com/rainycape/dl) | ||
|
||
[1]: https://godoc.org/github.com/rainycape/dl?status.svg | ||
[2]: https://godoc.org/github.com/rainycape/dl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ import ( | |
"bytes" | ||
"fmt" | ||
|
||
"dl" | ||
"github.com/rainycape/dl" | ||
) | ||
|
||
func ExampleOpen_snprintf() { | ||
|
Oops, something went wrong.