Skip to content

Commit

Permalink
Update aws-c-common: v0.8.7 -> v0.8.11 (#6847)
Browse files Browse the repository at this point in the history
ref #6827
  • Loading branch information
JinheLin authored Feb 20, 2023
1 parent ee8675a commit f21e06a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/aws-c-common
Submodule aws-c-common updated 47 files
+22 −0 .github/workflows/ci.yml
+3 −1 CMakeLists.txt
+0 −2 README.md
+14 −11 cmake/AwsFeatureTests.cmake
+96 −29 cmake/AwsThreadName.cmake
+0 −36 docker-images/README.md
+0 −69 docker-images/al2012/Dockerfile
+0 −174 docker-images/linux-android/Dockerfile
+0 −27 docker-images/linux-nodejs-x64/Dockerfile
+0 −51 docker-images/manylinux1-x64/Dockerfile
+0 −51 docker-images/manylinux1-x86/Dockerfile
+0 −63 docker-images/ubuntu-16.04-x64/Dockerfile
+0 −38 docker-images/ubuntu-16.04-x86/Dockerfile
+0 −62 docker-images/windows-crt-dotnet/Dockerfile
+0 −34 docker-images/windows-x64/vs2015/Dockerfile
+0 −37 docker-images/windows-x64/vs2017/Dockerfile
+5 −2 include/aws/common/array_list.inl
+1 −1 include/aws/common/config.h.in
+1 −0 include/aws/common/cpuid.h
+58 −16 include/aws/common/encoding.h
+3 −1 include/aws/common/error.h
+1 −2 include/aws/common/external/cJSON.h
+4 −1 include/aws/common/file.h
+4 −0 include/aws/common/json.h
+25 −1 include/aws/common/math.gcc_builtin.inl
+3 −3 include/aws/common/math.h
+1 −1 include/aws/common/math.inl
+124 −38 include/aws/common/math.msvc.inl
+26 −0 include/aws/common/thread.h
+15 −0 source/arch/intel/cpuid.c
+1 −1 source/array_list.c
+65 −40 source/encoding.c
+17 −1 source/error.c
+0 −11 source/external/cJSON.c
+17 −12 source/file.c
+3 −2 source/log_writer.c
+6 −1 source/logging.c
+30 −34 source/posix/file.c
+36 −2 source/posix/thread.c
+23 −5 source/windows/file.c
+50 −0 source/windows/thread.c
+15 −11 tests/CMakeLists.txt
+1 −1 tests/atomics_test.c
+2 −0 tests/cpuid_test.c
+121 −21 tests/encoding_test.c
+50 −2 tests/math_test.c
+16 −1 tests/thread_test.c
4 changes: 4 additions & 0 deletions contrib/aws-cmake/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,10 @@ target_include_directories(_aws SYSTEM BEFORE PRIVATE ${AWS_PRIVATE_INCLUDES})
target_compile_definitions(_aws PUBLIC ${AWS_PUBLIC_COMPILE_DEFS})
target_compile_definitions(_aws PRIVATE ${AWS_PRIVATE_COMPILE_DEFS})
target_link_libraries(_aws PRIVATE ${AWS_PRIVATE_LIBS})
target_no_warning(_aws deprecated-declarations)
target_no_warning(_aws implicit-function-declaration)
target_no_warning(_aws int-conversion)
target_no_warning(_aws unused-function)

aws_set_thread_affinity_method(_aws)
aws_set_thread_name_method(_aws)
Expand Down

0 comments on commit f21e06a

Please sign in to comment.