Skip to content

Commit

Permalink
macos build fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
den-mentiei committed Feb 21, 2024
1 parent 7747316 commit 436320c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
### Removed

## [0.0.9] - 2024-02-21

### Fixed

- macos build is now fixed for the sys crate.

## [0.0.8] - 2024-01-31

### Added
Expand Down Expand Up @@ -95,7 +101,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial implementation of zones, frames, plots & messages

[unreleased]: https://github.com/den-mentiei/tracy-gizmos/compare/v0.0.8...HEAD
[unreleased]: https://github.com/den-mentiei/tracy-gizmos/compare/v0.0.9...HEAD
[0.0.9]: https://github.com/den-mentiei/tracy-gizmos/compare/v0.0.8..v0.0.9
[0.0.8]: https://github.com/den-mentiei/tracy-gizmos/compare/v0.0.7..v0.0.8
[0.0.7]: https://github.com/den-mentiei/tracy-gizmos/compare/v0.0.6..v0.0.7
[0.0.6]: https://github.com/den-mentiei/tracy-gizmos/compare/v0.0.5..v0.0.6
Expand Down
2 changes: 1 addition & 1 deletion tracy-gizmos-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracy-gizmos-sys"
version = "0.10.0"
version = "0.11.0"
authors = ["Denys Mentiei <[email protected]>"]
description = "Bindings for the Tracy C API"
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions tracy-gizmos-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ fn main() {
let mut builder = cc::Build::new();
builder
.cpp(true)
.flag("-std=c++11")
.file(tracy.join("TracyClient.cpp"))
// We always enable it to simplify things. If profiling is not needed,
// this crate as a dependency could be optional.
Expand Down
4 changes: 2 additions & 2 deletions tracy-gizmos/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tracy-gizmos"
version = "0.0.8"
version = "0.0.9"
description = "Bindings for the client library of the Tracy profiler"
keywords = ["profiler", "performance", "tracy", "api-bindings"]
categories = ["development-tools::profiling", "api-bindings"]
Expand All @@ -12,7 +12,7 @@ readme.workspace = true

[dependencies.sys]
package = "tracy-gizmos-sys"
version = "0.10.0"
version = "0.11.0"
path = "../tracy-gizmos-sys"
optional = true

Expand Down

0 comments on commit 436320c

Please sign in to comment.