8000 Tags · ClickHouse/aws-c-common · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: ClickHouse/aws-c-common

Tags

v0.8.5

Toggle v0.8.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Set thread names, for debugging (awslabs#937)

Also, rename a few choice functions where people often think our code is deadlocked, but it's not.

Using CamelCase names like "AwsHostResolver" because 15 characters is the max for Linux, so we can't do "aws_host_resolver"

v0.8.4

Toggle v0.8.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
clarify aws_byte_cursor_next_split comments and add tests (awslabs#943)

* clarify aws_byte_cursor_next_split comments and add tests

v0.8.3

Toggle v0.8.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
parse uri path as is (awslabs#941)

v0.8.2

Toggle v0.8.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Verify backtrace is defined too, not just header presence (awslabs#935)

* Verify backtrace is defined too, not just header presence
* clang tidy issues that only just now popped up

v0.8.1

Toggle v0.8.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Hide symbols from libcrypto.a (awslabs#925)

**ISSUE:**
We were unable to take the latest version of AWS-LC (source of libcrypto.a).

AWS-LC changed the default visibility of symbols in static builds, from "hidden" to "visible" (see aws/aws-lc#466)

This resulted in the symbols being visible in whatever shared library or executable ultimately used libcrypto.a. If an application ALSO ended up using libcrypto.so from the system's OpenSSL installation, we'd get crazy crashes due to SOME libcrypto function calls routing through libcrypto.a and SOME function calls routing through libcrypto.so.

**SOLUTION:**
Adapt the CMake function we use for configuring all C libraries in the Common Runtime ecosystem so that it always hides symbols from libcrypto.a.

v0.8.0

Toggle v0.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make libnuma linux only (awslabs#923)

v0.7.6

Toggle v0.7.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Make libnuma linux only (awslabs#923)

v0.7.5

Toggle v0.7.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
hide json module init and cleanup (awslabs#920)

v0.7.4

Toggle v0.7.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix compiler warning (awslabs#910)

v0.7.3

Toggle v0.7.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
improved checks for `-moutline-atomics` (awslabs#909)

**Issue #:** awslabs#90
3BB6
2
build failure for iOS that didn't occur until an application was finally linked together.

**Description of changes:**
Test by compiling a program that actually invokes atomic operations, instead of simply calling `check_c_compiler_flag()`. 

The errors didn't surface in the empty program CMake uses in `check_c_compiler_flag()` checks.
0