Skip to content
This repository was archived by the owner on Jun 28, 2022. It is now read-only.

Tags: DataDog/libddprof

Tags

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was signed with the committer’s verified signature.
morrisonlevi Levi Morrison
Release v0.6.0

Verified

This tag was signed with the committer’s verified signature.

v0.5.0-rc.1

Toggle v0.5.0-rc.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to v0.5.0-rc.1 (#38)

v0.4.0-rc.1

Toggle v0.4.0-rc.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.4.0-rc.1 (#25)

* Bump version to 0.4.0-rc.1

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to v0.3.0 (#18)

v0.3.0-rc.1

Toggle v0.3.0-rc.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump version to 0.3.0-rc.1 (#17)

v0.2.0

Toggle v0.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Adjust per-platform link libraries (#12)

* Adjust per-platform link libraries

While investigating a sigsegv due to strange linking, I realized that
the link libraries that Rust suggests are per platform. This commit
adjusts the pkg-config and cmake helpers in a per-platform way.

Note that this is brittle. Any change in these flags should be
investigated by a human.

* Remove -lgcc_s for Linux platforms

This is because if it is present, even if -static-libgcc is provided,
then it will be present in the final library runtime dependencies.
This is undesirable at least on Alpine Linux, where it may not even be
present due to the platform's minimalism.

v0.2.0-rc.2

Toggle v0.2.0-rc.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Adjust per-platform link libraries (#12)

* Adjust per-platform link libraries

While investigating a sigsegv due to strange linking, I realized that
the link libraries that Rust suggests are per platform. This commit
adjusts the pkg-config and cmake helpers in a per-platform way.

Note that this is brittle. Any change in these flags should be
investigated by a human.

* Remove -lgcc_s for Linux platforms

This is because if it is present, even if -static-libgcc is provided,
then it will be present in the final library runtime dependencies.
This is undesirable at least on Alpine Linux, where it may not even be
present due to the platform's minimalism.

v0.2.0-rc.1

Toggle v0.2.0-rc.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Simplify dedup_ref (string interning) (#11)

This should be slightly more efficient while also being more
understandable.