-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit b4a144c Author: Brandon Saint-John <[email protected]> Date: Mon Mar 11 00:14:01 2024 -0700 New and cleaner CHANGELOG commit 9c55cad Author: Brandon Saint-John <[email protected]> Date: Mon Mar 11 00:06:11 2024 -0700 slow5lib-sys: Fix typos in README commit 07c6249 Author: Brandon Saint-John <[email protected]> Date: Mon Mar 11 00:03:25 2024 -0700 bump slow5lib_sys minor version: added new item commit b805b8b Author: Brandon Saint-John (aarch64) <[email protected]> Date: Fri Mar 8 15:25:10 2024 -0800 Expand testing os commit f5c9a5d Author: Brandon Saint-John <[email protected]> Date: Thu Feb 29 08:26:41 2024 -0800 fix: README.md cleanup commit a165655 Author: Brandon Saint-John <[email protected]> Date: Wed Feb 28 21:12:52 2024 -0800 bug: forgot to switch back CargoCallbacks commit 177f60a Author: Brandon Saint-John <[email protected]> Date: Wed Feb 28 21:02:19 2024 -0800 fix: missing __gnuc_va_list breaks compilation This commit adds __gnuc_va_list as a public type into slow5lib-sys. I recently ran into compilation errors during the build.rs phase of slow5lib-sys, 71 | pub type va_list = __gnuc_va_list; | ^^^^^^^^^^^^^^ not found in this scope It isn't clear why previous iterations didn't encounter this issue, and possibly may be due to compiler versions. There have been some issues dealing with variadic arguments. The only function using this is slow5_vasprintf, and in the future it might make more sense to remove that function from the API. But for now, we will add the missing type.
- Loading branch information
Showing
7 changed files
with
51 additions
and
17 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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
<!-- ## [Unreleased] - yyyy-mm-dd | ||
### Added | ||
### Changed | ||
### Deprecated | ||
### Removed | ||
### Fixed --> | ||
|
||
## [0.9.1] - 2024-03-11 | ||
|
||
### Added | ||
|
||
- Add `__gnuc_va_list` type to fix compilation errors |
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