Skip to content

Commit

Permalink
feat: added new configuration files
Browse files Browse the repository at this point in the history
  • Loading branch information
maschnetwork committed May 7, 2024
1 parent bd5ed86 commit f61a8e4
Show file tree
Hide file tree
Showing 16 changed files with 38 additions and 14 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -96,3 +96,6 @@ log.txt
# docs are updated automatically by .github/workflows/docs.yml
docs/

# graalvm manually generated config files
graalvm-configuration

2 changes: 1 addition & 1 deletion crt/aws-c-auth
Submodule aws-c-auth updated 196 files
2 changes: 1 addition & 1 deletion crt/aws-c-common
Submodule aws-c-common updated 44 files
+1 −1 .github/workflows/ci.yml
+1 −1 .github/workflows/codecov.yml
+2 −2 .github/workflows/stale_issue.yml
+17 −13 CMakeLists.txt
+2 −2 README.md
+0 −14 bin/system_info/print_system_info.c
+1 −18 cmake/AwsFeatureTests.cmake
+32 −92 cmake/AwsSIMD.cmake
+16 −64 include/aws/common/atomics_msvc.inl
+1 −1 include/aws/common/condition_variable.h
+0 −10 include/aws/common/config.h.in
+0 −3 include/aws/common/cpuid.h
+2 −5 include/aws/common/date_time.h
+8 −10 include/aws/common/external/cJSON.h
+1 −1 include/aws/common/json.h
+1 −1 include/aws/common/mutex.h
+1 −1 include/aws/common/package.h
+1 −1 include/aws/common/rw_lock.h
+9 −20 include/aws/testing/aws_test_harness.h
+1 −1 source/allocator.c
+1 −7 source/arch/arm/asm/cpuid.c
+0 −40 source/arch/arm/darwin/cpuid.c
+2 −11 source/arch/arm/msvc/cpuid.c
+0 −13 source/arch/intel/cpuid.c
+1 −1 source/arch/intel/encoding_avx2.c
+1 −1 source/common.c
+238 −186 source/date_time.c
+19 −52 source/external/cJSON.c
+3 −3 source/json.c
+1 −1 source/log_formatter.c
+2 −2 source/logging.c
+3 −16 source/posix/thread.c
+5 −2 source/string.c
+1 −1 source/windows/clock.c
+1 −1 source/windows/condition_variable.c
+1 −2 source/windows/device_random.c
+1 −1 source/windows/file.c
+1 −1 source/windows/mutex.c
+1 −2 source/windows/rw_lock.c
+1 −1 source/windows/thread.c
+3 −3 tests/CMakeLists.txt
+62 −51 tests/date_time_test.c
+1 −1 tests/encoding_test.c
+0 −34 tests/thread_test.c
2 changes: 1 addition & 1 deletion crt/aws-checksums
2 changes: 1 addition & 1 deletion crt/aws-lc
2 changes: 1 addition & 1 deletion crt/s2n
Submodule s2n updated from 171c96 to a9a07a
19 changes: 18 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,22 @@
</plugins>
</build>
</profile>
<profile>
<id>generate-graalvm-files</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<configuration>
<argLine>-agentlib:native-image-agent=config-output-dir=graalvm-configuration -Daws.crt.memory.tracing=2 -Xcheck:jni</argLine>
<forkCount>1</forkCount>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>

<dependencies>
Expand Down Expand Up @@ -479,7 +495,6 @@
</property>
</properties>
<shutdown>kill</shutdown>
<argLine>-Daws.crt.memory.tracing=2 -Xcheck:jni</argLine>
<runOrder>alphabetical</runOrder>
<useFile>false</useFile>
<reuseForks>false</reuseForks>
Expand All @@ -488,4 +503,6 @@
</plugin>
</plugins>
</build>


</project>
Original file line number Diff line number Diff line change
Expand Up @@ -457,6 +457,10 @@
"fields":[{"name":"bytesTransferred"}, {"name":"contentLength"}],
"methods":[{"name":"<init>","parameterTypes":[] }]
},
{
"name":"software.amazon.awssdk.crt.http.HttpProxyOptions$HttpProxyAuthorizationType",
"methods":[{"name":"getValue","parameterTypes":[] }]
},
{
"name":"software.amazon.awssdk.crt.s3.S3MetaRequestResponseHandlerNativeAdapter",
"methods":[{"name":"onFinished","parameterTypes":["int","int","byte[]","int","boolean","java.lang.Throwable","java.nio.ByteBuffer"] }, {"name":"onProgress","parameterTypes":["software.amazon.awssdk.crt.s3.S3MetaRequestProgress"] }, {"name":"onResponseBody","parameterTypes":["byte[]","long","long"] }, {"name":"onResponseHeaders","parameterTypes":["int","java.nio.ByteBuffer"] }]
Expand Down

0 comments on commit f61a8e4

Please sign in to comment.