Giter Site home page Giter Site logo

amazon-s3-gst-plugin's Introduction

Build Status

Amazon S3 Gst Plugin

A collection of GStreamer elements to interact with the Amazon Simple Storage Service (S3).

Getting started

Setting up dependencies

Following dependencies are required to build the project:

Building the project

$ meson build
$ cd build
$ ninja
$ sudo ninja install

After executing commands above, the plugin (libgsts3elements.so) should be installed in the default GStreamer's plugin path. It can also be found in the build directory, and used by specifying the plugin path:

$ GST_PLUGIN_PATH=src gst-inspect-1.0 s3sink

Elements

  • s3sink - streams the multimedia to a specified bucket.

AWS Credentials

By default all the elements use the default credentials provider chain, which means, that credentials are read from the following sources:

  1. Environment variables: AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY
  2. AWS credentials file. Usually located at ~/.aws/credentials.
  3. For EC2 instance, IAM instance profile.

Some of the elements have credentials property of GstAWSCredentials type, which is a wrapper for an Aws::Auth::AWSCredentialsProvider class.

Defining GstAWSCredentials as a string

The GstAWSCredentials object can be deserialized from a string, which makes using the property in gst-launch command possible. The string must be specified in the following format

property1=value1[|property2=value2[|property3=value3[|...]]]

Currently the deserializer accepts following properties:

  • access-key-id, e.g. AKIAIOSFODNN7EXAMPLE
  • secret-access-key, e.g. wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
  • session-token
  • iam-role, e.g. arn:aws:iam::123456789012:role/s3access

All the properties are optional, however, be aware of the rules:

  • access-key-id cannot exist without secret-access-key (and vice versa)
  • if session-token specified, both access-key-id and secret-access-key must be present
  • if iam-role is specified, it will use default credentials provider to assume the role, unless access-key-id and secret-access-key are present - in that case, these credentials are used to assume the role.

License Summary

This code is made available under the LGPLv2.1 license. (See LICENSE file)

Examples

  • Streaming camera capture to an S3 bucket:
$ gst-launch-1.0 -e v4l2src num-buffers=300 device=/dev/video0 ! x264enc ! matroskamux ! s3sink bucket=my-personal-videos key=recording.mkv

Contributing

Please read CONTRIBUTING.md for details on our code of conduct, and the process for submitting pull requests to us.

amazon-s3-gst-plugin's People

Contributors

btgoodwin avatar jawilson avatar loganek avatar louisharris avatar nirbheek avatar russnic avatar smthsm avatar ystreet avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

amazon-s3-gst-plugin's Issues

link issues

this is still required to fix link issues:

Index: git/meson.build
===================================================================
--- git.orig/meson.build
+++ git/meson.build
@@ -19,6 +19,9 @@ gst_base_dep = dependency('gstreamer-bas
   fallback : ['gstreamer', 'gst_base_dep'])
 gst_check_dep = dependency('gstreamer-check-1.0', version : gst_req,
   fallback : ['gstreamer', 'gst_check_dep'])
+cpp = meson.get_compiler('cpp')
+aws_c_common_dep = cpp.find_library('aws-c-common', required: true)
+aws_crt_cpp_dep=cpp.find_library('aws-crt-cpp', required:true)
 # use static linker args on macos as the dylibs don't include the crt symbols
 aws_cpp_sdk_s3_dep = dependency('aws-cpp-sdk-s3', version : aws_cpp_sdk_req, static : is_macos)
 aws_cpp_sdk_sts_dep = dependency('aws-cpp-sdk-sts', version : aws_cpp_sdk_req, static : is_macos)
Index: git/src/meson.build
===================================================================
--- git.orig/src/meson.build
+++ git/src/meson.build
@@ -15,7 +15,7 @@ symbol_export_define = ['-DGST_EXPORTS']
 
 credentials = library('gstawscredentials-@0@'.format(apiversion),
   ['gstawscredentials.cpp'],
-  dependencies : [aws_cpp_sdk_sts_dep, gst_dep],
+  dependencies : [aws_cpp_sdk_sts_dep, gst_dep, aws_c_common_dep, aws_crt_cpp_dep],
   cpp_args: symbol_export_define,
   install : true
 )
@@ -37,7 +37,7 @@ gst_s3_elements = library('gsts3elements
   gst_s3_elements_sources,
   cpp_args: symbol_export_define,
   c_args: symbol_export_define,
-  dependencies : [gst_dep, gst_base_dep, multipart_uploader_dep, credentials_dep],
+  dependencies : [gst_dep, gst_base_dep, multipart_uploader_dep, credentials_dep, aws_c_common_dep, aws_crt_cpp_dep],
   include_directories : [configinc],
   install : true,
   install_dir : plugins_install_dir,
@@ -45,7 +45,7 @@ gst_s3_elements = library('gsts3elements
 
 s3elements_dep = declare_dependency(link_with : gst_s3_elements,
   include_directories : [include_directories('.')],
-  dependencies : [gst_dep, gst_base_dep, aws_cpp_sdk_s3_dep, aws_cpp_sdk_sts_dep]
+  dependencies : [gst_dep, gst_base_dep, aws_cpp_sdk_s3_dep, aws_cpp_sdk_sts_dep, aws_c_common_dep, aws_crt_cpp_dep]
 )
 
 install_headers(gst_s3_public_headers, subdir : 'gstreamer-1.0/gst/aws')

Time bar not available

hi all,
this is a great project.
I 'm using s3sink, Mp4 works, MKV can store and play, but the time bar cannot jump
this is my pipline
gst-launch-1.0 -e rtspsrc location=rtsp://admin:123456@ip ! parsebin ! h264parse ! matroskamux offset-to-zero=true ! s3sink aws-sdk-use-http=true aws-sdk-endpoint=ip:port aws-sdk-s3-sign-payload=false bucket=test key=video5.mkv

result
image

We look forward to your reply,thank you

Allow more modification of AWS::Client::Configuration

Hello,

I am hoping to use the amazon-s3-gst-plugin with a different backend then S3 (e.g. minio/ceph), which requires modifying the Aws::Client::ClientConfiguration, explicitly allowing changes like:

client_config.endpointOverride = Aws::String("ip:port");
client_config.scheme = Aws::Http::Scheme::HTTP;
client_config.verifySSL = false;

and

 _s3_client = std::unique_ptr<Aws::S3::S3Client>(new Aws::S3::S3Client(std::move(credentials_provider), client_config, Aws::Client::AWSAuthV4Signer::PayloadSigningPolicy::Never, false));

As far as I can tell, there isn't currently a great way to do this without just changing the source code. It would be great if there could be a way to modify these values at runtime.

Happy to contribute if you feel this is valuable and not currently on the roadmap!

Thanks for the awesome plugin

Having issue with aws-cpp-sdk-s3 while running meson build

I am having issue while setting up the plugin when i run meson build it gives me these logs
The Meson build system
Version: 0.53.2
Source dir: /home/faisal/gst/amazon-s3-gst-plugin
Build dir: /home/faisal/gst/amazon-s3-gst-plugin/build
Build type: native build
Project name: amazon-s3-gst-plugin
Project version: 0.1.0
C compiler for the host machine: cc (gcc 9.4.0 "cc (Ubuntu 9.4.0-1ubuntu120.04.1) 9.4.0")
C linker for the host machine: cc ld.bfd 2.34
C++ compiler for the host machine: c++ (gcc 9.4.0 "c++ (Ubuntu 9.4.0-1ubuntu1
20.04.1) 9.4.0")
C++ linker for the host machine: c++ ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: /usr/bin/pkg-config (0.29.1)
Run-time dependency glib-2.0 found: YES 2.64.6
Run-time dependency gstreamer-1.0 found: YES 1.16.2
Run-time dependency gstreamer-base-1.0 found: YES 1.16.2
Run-time dependency gstreamer-check-1.0 found: YES 1.16.2
Found CMake: /usr/bin/cmake (3.16.3)
Run-time dependency aws-cpp-sdk-s3 found: NO (tried pkgconfig and cmake)

meson.build:20:0: ERROR: Dependency "aws-cpp-sdk-s3" not found, tried pkgconfig and cmake

I am not sure about aws sdk while i am setting it up correctly or not,Please let me know about the steps of setting aws sdk for s3. Thanks

Build fail for AWS SDK 1.9.19

mesos build completed successfully, but ninja fail with linking error.

makhlu@i104299575:~/amazon-s3-gst-plugin/build$ ninja
[0/1] Regenerating build files.
The Meson build system
Version: 0.58.0
Source dir: /home/makhlu/amazon-s3-gst-plugin
Build dir: /home/makhlu/amazon-s3-gst-plugin/build
Build type: native build
Project name: amazon-s3-gst-plugin
Project version: 0.1.0
C compiler for the host machine: cc (gcc 9.3.0 "cc (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C linker for the host machine: cc ld.bfd 2.34
C++ compiler for the host machine: c++ (gcc 9.3.0 "c++ (Ubuntu 9.3.0-17ubuntu1~20.04) 9.3.0")
C++ linker for the host machine: c++ ld.bfd 2.34
Host machine cpu family: x86_64
Host machine cpu: x86_64
Dependency glib-2.0 found: YES 2.64.6 (cached)
Dependency gstreamer-1.0 found: YES 1.16.2 (cached)
Dependency gstreamer-base-1.0 found: YES 1.16.2 (cached)
Dependency gstreamer-check-1.0 found: YES 1.16.2 (cached)
Dependency aws-cpp-sdk-s3 found: YES 1.9.19 (cached)
Dependency aws-cpp-sdk-sts found: YES 1.9.19 (cached)
Library aws-c-common found: YES
Library aws-crt-cpp found: YES
Configuring config.h using configuration
Configuring gstreamer-aws-1.0.pc using configuration
Build targets in project: 4

Found ninja-1.10.0 at /usr/bin/ninja
[1/3] Linking target src/libgsts3elements.so
FAILED: src/libgsts3elements.so
c++  -o src/libgsts3elements.so src/libgsts3elements.so.p/gsts3elements.c.o src/libgsts3elements.so.p/gsts3sink.c.o src/libgsts3elements.so.p/gsts3uploader.c.o -Wl,--as-needed -Wl,--no-undefined -shared -fPIC -Wl,--start-group -Wl,-soname,libgsts3elements.so '-Wl,-rpath,$ORIGIN/' -Wl,-rpath-link,/home/makhlu/amazon-s3-gst-plugin/build/src src/libmultipartuploader.a src/libgstawscredentials-1.0.so /usr/lib/x86_64-linux-gnu/libgstreamer-1.0.so /usr/lib/x86_64-linux-gnu/libgobject-2.0.so /usr/lib/x86_64-linux-gnu/libglib-2.0.so /usr/lib/x86_64-linux-gnu/libgstbase-1.0.so /usr/local/lib/libaws-cpp-sdk-s3.so /usr/local/lib/libaws-cpp-sdk-core.so -Wl,--end-group
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<unsigned char*>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<unsigned char*>::deallocate(unsigned char**, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o):/usr/local/include/aws/crt/StlAllocator.h:56: more undefined references to `aws_mem_release' follow
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<unsigned char*>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o):/usr/local/include/aws/crt/StlAllocator.h:56: more undefined references to `aws_mem_release' follow
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o):/usr/local/include/aws/crt/StlAllocator.h:56: more undefined references to `aws_mem_release' follow
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<Aws::S3::Model::CompletedPart>::allocate(unsigned long, void const*)':
/usr/local/include/aws/crt/StlAllocator.h:50: undefined reference to `aws_mem_acquire'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<Aws::S3::Model::CompletedPart>::deallocate(Aws::S3::Model::CompletedPart*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<Aws::S3::Model::CompletedPart>::deallocate(Aws::S3::Model::CompletedPart*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o):/usr/local/include/aws/crt/StlAllocator.h:56: more undefined references to `aws_mem_release' follow
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o):/usr/local/include/aws/crt/StlAllocator.h:56: more undefined references to `aws_mem_release' follow
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::StlAllocator()':
/usr/local/include/aws/crt/StlAllocator.h:24: undefined reference to `Aws::Crt::g_allocator'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o):/usr/local/include/aws/crt/StlAllocator.h:56: more undefined references to `aws_mem_release' follow
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<unsigned char*>::allocate(unsigned long, void const*)':
/usr/local/include/aws/crt/StlAllocator.h:50: undefined reference to `aws_mem_acquire'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<unsigned char*>::deallocate(unsigned char**, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<unsigned char*>::allocate(unsigned long, void const*)':
/usr/local/include/aws/crt/StlAllocator.h:50: undefined reference to `aws_mem_acquire'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<unsigned char*>::deallocate(unsigned char**, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::allocate(unsigned long, void const*)':
/usr/local/include/aws/crt/StlAllocator.h:50: undefined reference to `aws_mem_acquire'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:50: undefined reference to `aws_mem_acquire'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:50: undefined reference to `aws_mem_acquire'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<Aws::S3::Model::CompletedPart>::allocate(unsigned long, void const*)':
/usr/local/include/aws/crt/StlAllocator.h:50: undefined reference to `aws_mem_acquire'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<Aws::S3::Model::CompletedPart>::deallocate(Aws::S3::Model::CompletedPart*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: src/libmultipartuploader.a(gsts3multipartuploader.cpp.o): in function `Aws::Crt::StlAllocator<char>::deallocate(char*, unsigned long)':
/usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
/usr/bin/ld: /usr/local/include/aws/crt/StlAllocator.h:56: undefined reference to `aws_mem_release'
collect2: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.

Build failed on Mac OS Catalina (ninja: build stopped: subcommand failed)

Hello guys,

meson build results -

pecha7x@MBP-Artem-2 amazon-s3-gst-plugin % meson build 
The Meson build system
Version: 1.1.0
Source dir: /Users/pecha7x/react_projects/bilingual/amazon-s3-gst-plugin
Build dir: /Users/pecha7x/react_projects/bilingual/amazon-s3-gst-plugin/build
Build type: native build
Project name: amazon-s3-gst-plugin
Project version: 0.2.0
C compiler for the host machine: cc (clang 12.0.0 "Apple clang version 12.0.0 (clang-1200.0.32.29)")
C linker for the host machine: cc ld64 609.8
C++ compiler for the host machine: c++ (clang 12.0.0 "Apple clang version 12.0.0 (clang-1200.0.32.29)")
C++ linker for the host machine: c++ ld64 609.8
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: /Library/Frameworks/GStreamer.framework/Versions/1.0/bin/pkg-config (0.29.2)
Run-time dependency glib-2.0 found: YES 2.74.4
Run-time dependency gstreamer-1.0 found: YES 1.22.2
Run-time dependency gstreamer-base-1.0 found: YES 1.22.2
Run-time dependency gstreamer-check-1.0 found: YES 1.22.2
Found CMake: /usr/local/bin/cmake (3.21.1)
WARNING: CMake: Dependency aws-cpp-sdk-core for aws-cpp-sdk-s3 was not found
Run-time dependency aws-cpp-sdk-s3 found: YES 1.10.30
WARNING: CMake: Dependency aws-cpp-sdk-core for aws-cpp-sdk-sts was not found
Run-time dependency aws-cpp-sdk-sts found: YES 1.10.30
Configuring config.h using configuration
Configuring gstreamer-aws-1.0.pc using configuration
Build targets in project: 4

Found ninja-1.11.1 at /usr/local/bin/ninja
WARNING: Running the setup command as `meson [options]` instead of `meson setup [options]` is ambiguous and deprecated.

and then cd build && ninja (full_error_log.log) -

pecha7x@MBP-Artem-2 amazon-s3-gst-plugin % cd build && ninja
[5/12] Compiling C++ object src/libgst...ls-1.0.dylib.p/gstawscredentials.cpp.o
FAILED: src/libgstawscredentials-1.0.dylib.p/gstawscredentials.cpp.o 
c++ -Isrc/libgstawscredentials-1.0.dylib.p -Isrc -I../src -I/usr/local/include -I/Library/Frameworks/GStreamer.framework/Versions/1.0/lib/pkgconfig/../../include/gstreamer-1.0 -I/Library/Frameworks/GStreamer.framework/Versions/1.0/lib/pkgconfig/../../include -I/Library/Frameworks/GStreamer.framework/Versions/1.0/lib/pkgconfig/../../include/glib-2.0 -I/Library/Frameworks/GStreamer.framework/Versions/1.0/lib/pkgconfig/../../lib/glib-2.0/include -fcolor-diagnostics -Wall -Winvalid-pch -Wextra -O2 -g -DGST_EXPORTS -MD -MQ src/libgstawscredentials-1.0.dylib.p/gstawscredentials.cpp.o -MF src/libgstawscredentials-1.0.dylib.p/gstawscredentials.cpp.o.d -o src/libgstawscredentials-1.0.dylib.p/gstawscredentials.cpp.o -c ../src/gstawscredentials.cpp
In file included from ../src/gstawscredentials.cpp:19:
In file included from ../src/gstawscredentials.hpp:24:
In file included from /usr/local/include/aws/core/auth/AWSCredentialsProvider.h:11:
In file included from /usr/local/include/aws/core/utils/DateTime.h:9:
In file included from /usr/local/include/aws/core/utils/memory/stl/AWSString.h:10:
In file included from /usr/local/include/aws/core/utils/memory/stl/AWSAllocator.h:11:
In file included from /usr/local/include/aws/core/utils/memory/AWSMemory.h:10:
/usr/local/include/aws/core/utils/memory/MemorySystemInterface.h:25:52: warning: defaulted function definitions are a C++11 extension [-Wc++11-extensions]
                virtual ~MemorySystemInterface() = default;
                                                   ^
In file included from ../src/gstawscredentials.cpp:19:
In file included from ../src/gstawscredentials.hpp:24:
In file included from /usr/local/include/aws/core/auth/AWSCredentialsProvider.h:11:
In file included from /usr/local/include/aws/core/utils/DateTime.h:9:
In file included from /usr/local/include/aws/core/utils/memory/stl/AWSString.h:10:
In file included from /usr/local/include/aws/core/utils/memory/stl/AWSAllocator.h:11:
/usr/local/include/aws/core/utils/memory/AWSMemory.h:62:35: warning: variadic templates are a C++11 extension [-Wc++11-extensions]
    template<typename T, typename ...ArgTypes>
                                  ^
/usr/local/include/aws/core/utils/memory/AWSMemory.h:63:47: warning: rvalue references are a C++11 extension [-Wc++11-extensions]
    T* New(const char* allocationTag, ArgTypes&&... args)
                                              ^
/usr/local/include/aws/core/utils/memory/AWSMemory.h:153:78: error: 'T' does not refer to a value
            std::size_t headerSize = (std::max)(sizeof(std::size_t), alignof(T));
            
            ......
            
fatal error: too many errors emitted, stopping now [-ferror-limit=]
65 warnings and 20 errors generated.
ninja: build stopped: subcommand failed.    

Splitmuxsrc

Are there plans to support for a splitmuxsrc?

Cannot build on Windows

I've tried as many things as I can think and I can't get this to build in Windows.

I had no problems build/installing aws-sdk-cpp.

When I build the SDK with:

cmake -S . -B build -DCMAKE_INSTALL_PREFIX:PATH=C:/aws-cpp-sdk-all -DCMAKE_BUILD_TYPE=Debug && cmake --build build -j --config Debug && cmake --install build --config Debug

and this project with:

meson --buildtype debug --pkg-config-path C:\aws-cpp-sdk-all\lib\pkgconfig build && meson compile -C build -j 0

I get:

The Meson build system
Version: 0.56.2
Source dir: C:\Projects\amazon-s3-gst-plugin
Build dir: C:\Projects\amazon-s3-gst-plugin\build
Build type: native build
Project name: amazon-s3-gst-plugin
Project version: 0.1.0
C compiler for the host machine: cl (msvc 19.28.29337 "Microsoft (R) C/C++ Optimizing Compiler Version 19.28.29337 for x64")
C linker for the host machine: link link 14.28.29337.0
C++ compiler for the host machine: cl (msvc 19.28.29337 "Microsoft (R) C/C++ Optimizing Compiler Version 19.28.29337 for x64")
C++ linker for the host machine: link link 14.28.29337.0
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: C:\gstreamer\1.18.2\msvc_x86_64\\bin\pkg-config.EXE (0.29.2)
Run-time dependency glib-2.0 found: YES 2.62.6
Run-time dependency gstreamer-1.0 found: YES 1.18.2
Run-time dependency gstreamer-base-1.0 found: YES 1.18.2
Run-time dependency gstreamer-check-1.0 found: YES 1.18.2
Run-time dependency aws-cpp-sdk-s3 found: YES 1.8.139
Run-time dependency aws-cpp-sdk-sts found: YES 1.8.139
Configuring config.h using configuration
Configuring gstreamer-aws-1.0.pc using configuration
Build targets in project: 4

Option buildtype is: debug [default: debugoptimized]
Found ninja-1.10.2 at "C:\Program Files\Meson\ninja.EXE"
Found runner: ['C:\\Program Files\\Meson\\ninja.EXE']
ninja: Entering directory `build'
[3/12] Compiling C object src/gsts3elements.dll.p/gsts3sink.c.obj
C:\Projects\amazon-s3-gst-plugin\src\gsts3sink.c(351): warning C4244: 'function': conversion from 'gsize' to 'guint', possible loss of data
[4/12] Compiling C object tests/check/s3sink.exe.p/s3sink.c.obj
C:\Projects\amazon-s3-gst-plugin\tests\check\s3sink.c(91): warning C4267: 'function': conversion from 'size_t' to 'guint32', possible loss of data
[6/12] Linking target src/gstawscredentials-1.0.dll
FAILED: src/gstawscredentials-1.0.dll src/gstawscredentials-1.0.pdb
"link"  /MACHINE:x64 /OUT:src/gstawscredentials-1.0.dll src/gstawscredentials-1.0.dll.p/gstawscredentials.cpp.obj "/nologo" "/release" "/nologo" "/DEBUG" "/PDB:src\gstawscredentials-1.0.pdb" "/DLL" "/IMPLIB:src\gstawscredentials-1.0.lib" "/LIBPATH:C:/aws-cpp-sdk-all/lib" "aws-cpp-sdk-sts.lib" "aws-cpp-sdk-core.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/gstreamer-1.0.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/gobject-2.0.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/glib-2.0.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/intl.lib" "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "comdlg32.lib" "advapi32.lib"
LINK : fatal error LNK1181: cannot open input file 'aws-cpp-sdk-sts.lib'
[7/12] Compiling C++ object src/libmultipartuploader.a.p/gsts3multipartuploader.cpp.obj
ninja: build stopped: subcommand failed.

Alternatively if I build the SDK with:

S . -B build -DCMAKE_INSTALL_PREFIX:PATH=C:/aws-cpp-sdk-all -DCMAKE_BUILD_TYPE=Debug -DBUILD_SHARED_LIBS=NO && cmake --build build -j --config Debug && cmake --install build --config Debug

and this project with:

meson --buildtype debug --pkg-config-path C:\aws-cpp-sdk-all\lib\pkgconfig build && meson compile -C build -j 0

I get:

The Meson build system
Version: 0.56.2
Source dir: C:\Projects\amazon-s3-gst-plugin
Build dir: C:\Projects\amazon-s3-gst-plugin\build
Build type: native build
Project name: amazon-s3-gst-plugin
Project version: 0.1.0
C compiler for the host machine: cl (msvc 19.28.29337 "Microsoft (R) C/C++ Optimizing Compiler Version 19.28.29337 for x64")
C linker for the host machine: link link 14.28.29337.0
C++ compiler for the host machine: cl (msvc 19.28.29337 "Microsoft (R) C/C++ Optimizing Compiler Version 19.28.29337 for x64")
C++ linker for the host machine: link link 14.28.29337.0
Host machine cpu family: x86_64
Host machine cpu: x86_64
Found pkg-config: C:\gstreamer\1.18.2\msvc_x86_64\\bin\pkg-config.EXE (0.29.2)
Run-time dependency glib-2.0 found: YES 2.62.6
Run-time dependency gstreamer-1.0 found: YES 1.18.2
Run-time dependency gstreamer-base-1.0 found: YES 1.18.2
Run-time dependency gstreamer-check-1.0 found: YES 1.18.2
Run-time dependency aws-cpp-sdk-s3 found: YES 1.8.139
Run-time dependency aws-cpp-sdk-sts found: YES 1.8.139
Configuring config.h using configuration
Configuring gstreamer-aws-1.0.pc using configuration
Build targets in project: 4

Option buildtype is: debug [default: debugoptimized]
Found ninja-1.10.2 at "C:\Program Files\Meson\ninja.EXE"
Found runner: ['C:\\Program Files\\Meson\\ninja.EXE']
ninja: Entering directory `build'
[3/12] Compiling C object src/gsts3elements.dll.p/gsts3sink.c.obj
C:\Projects\amazon-s3-gst-plugin\src\gsts3sink.c(351): warning C4244: 'function': conversion from 'gsize' to 'guint', possible loss of data
[4/12] Compiling C object tests/check/s3sink.exe.p/s3sink.c.obj
C:\Projects\amazon-s3-gst-plugin\tests\check\s3sink.c(91): warning C4267: 'function': conversion from 'size_t' to 'guint32', possible loss of data
[6/12] Linking target src/gstawscredentials-1.0.dll
FAILED: src/gstawscredentials-1.0.dll src/gstawscredentials-1.0.pdb
"link"  /MACHINE:x64 /OUT:src/gstawscredentials-1.0.dll src/gstawscredentials-1.0.dll.p/gstawscredentials.cpp.obj "/nologo" "/release" "/nologo" "/DEBUG" "/PDB:src\gstawscredentials-1.0.pdb" "/DLL" "/IMPLIB:src\gstawscredentials-1.0.lib" "C:/aws-cpp-sdk-all/lib/aws-cpp-sdk-sts.lib" "C:/aws-cpp-sdk-all/lib/aws-cpp-sdk-core.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/gstreamer-1.0.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/gobject-2.0.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/glib-2.0.lib" "C:/gstreamer/1.18.2/msvc_x86_64/lib/intl.lib" "kernel32.lib" "user32.lib" "gdi32.lib" "winspool.lib" "shell32.lib" "ole32.lib" "oleaut32.lib" "uuid.lib" "comdlg32.lib" "advapi32.lib"
LINK : warning LNK4217: symbol '??0ClientConfiguration@Client@Aws@@QEAA@XZ (public: __cdecl Aws::Client::ClientConfiguration::ClientConfiguration(void))' defined in 'aws-cpp-sdk-core.lib(ub_core.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??1ClientConfiguration@Client@Aws@@QEAA@XZ (public: __cdecl Aws::Client::ClientConfiguration::~ClientConfiguration(void))' defined in 'aws-cpp-sdk-core.lib(ub_core.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??0AWSCredentials@Auth@Aws@@QEAA@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@00@Z (public: __cdecl Aws::Auth::AWSCredentials::AWSCredentials(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &))' defined in 'aws-cpp-sdk-core.lib(ub_core.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '?GetAWSAccessKeyId@AWSCredentials@Auth@Aws@@QEBAAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ (public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const & __cdecl Aws::Auth::AWSCredentials::GetAWSAccessKeyId(void)const )' defined in 'aws-cpp-sdk-core.lib(ub_core.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??1AWSCredentials@Auth@Aws@@QEAA@XZ (public: __cdecl Aws::Auth::AWSCredentials::~AWSCredentials(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??0SimpleAWSCredentialsProvider@Auth@Aws@@QEAA@AEBVAWSCredentials@12@@Z (public: __cdecl Aws::Auth::SimpleAWSCredentialsProvider::SimpleAWSCredentialsProvider(class Aws::Auth::AWSCredentials const &))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??1SimpleAWSCredentialsProvider@Auth@Aws@@UEAA@XZ (public: virtual __cdecl Aws::Auth::SimpleAWSCredentialsProvider::~SimpleAWSCredentialsProvider(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"public: virtual void * __cdecl Aws::Auth::SimpleAWSCredentialsProvider::`scalar deleting destructor'(unsigned int)" (??_GSimpleAWSCredentialsProvider@Auth@Aws@@UEAAPEAXI@Z)'
LINK : warning LNK4217: symbol '??0DefaultAWSCredentialsProviderChain@Auth@Aws@@QEAA@XZ (public: __cdecl Aws::Auth::DefaultAWSCredentialsProviderChain::DefaultAWSCredentialsProviderChain(void))' defined in 'aws-cpp-sdk-core.lib(ub_core.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"public: class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl <lambda_f53f2d229b59e1ef00649de4414d56ed>::operator()(void)const " (??R<lambda_f53f2d229b59e1ef00649de4414d56ed>@@QEBA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@XZ)'
LINK : warning LNK4217: symbol '??1DefaultAWSCredentialsProviderChain@Auth@Aws@@UEAA@XZ (public: virtual __cdecl Aws::Auth::DefaultAWSCredentialsProviderChain::~DefaultAWSCredentialsProviderChain(void))' defined in 'aws-cpp-sdk-core.lib(ub_core.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"public: virtual void * __cdecl Aws::Auth::DefaultAWSCredentialsProviderChain::`scalar deleting destructor'(unsigned int)" (??_GDefaultAWSCredentialsProviderChain@Auth@Aws@@UEAAPEAXI@Z)'
LINK : warning LNK4217: symbol '??0AssumeRoleRequest@Model@STS@Aws@@QEAA@XZ (public: __cdecl Aws::STS::Model::AssumeRoleRequest::AssumeRoleRequest(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??1AssumeRoleRequest@Model@STS@Aws@@UEAA@XZ (public: virtual __cdecl Aws::STS::Model::AssumeRoleRequest::~AssumeRoleRequest(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??1STSError@STS@Aws@@QEAA@XZ (public: __cdecl Aws::STS::STSError::~STSError(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"public: __cdecl Aws::Utils::Outcome<class Aws::STS::Model::AssumeRoleResult,class Aws::STS::STSError>::~Outcome<class Aws::STS::Model::AssumeRoleResult,class Aws::STS::STSError>(void)" (??1?$Outcome@VAssumeRoleResult@Model@STS@Aws@@VSTSError@34@@Utils@Aws@@QEAA@XZ)'
LINK : warning LNK4217: symbol '??1Credentials@Model@STS@Aws@@QEAA@XZ (public: __cdecl Aws::STS::Model::Credentials::~Credentials(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??1AssumeRoleResult@Model@STS@Aws@@QEAA@XZ (public: __cdecl Aws::STS::Model::AssumeRoleResult::~AssumeRoleResult(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"public: __cdecl Aws::Utils::Outcome<class Aws::STS::Model::AssumeRoleResult,class Aws::STS::STSError>::~Outcome<class Aws::STS::Model::AssumeRoleResult,class Aws::STS::STSError>(void)" (??1?$Outcome@VAssumeRoleResult@Model@STS@Aws@@VSTSError@34@@Utils@Aws@@QEAA@XZ)'
LINK : warning LNK4217: symbol '??0STSClient@STS@Aws@@QEAA@AEBV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@std@@AEBUClientConfiguration@Client@2@@Z (public: __cdecl Aws::STS::STSClient::STSClient(class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider> const &,struct Aws::Client::ClientConfiguration const &))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
LINK : warning LNK4217: symbol '??1STSClient@STS@Aws@@UEAA@XZ (public: virtual __cdecl Aws::STS::STSClient::~STSClient(void))' defined in 'aws-cpp-sdk-sts.lib(ub_STS.obj)' is imported by 'gstawscredentials.cpp.obj' in function '"class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)'
gstawscredentials.cpp.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class Aws::STS::Model::AssumeRoleRequest & __cdecl Aws::STS::Model::AssumeRoleRequest::WithRoleArn(char const *)" (__imp_?WithRoleArn@AssumeRoleRequest@Model@STS@Aws@@QEAAAEAV1234@PEBD@Z) referenced in function "class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)
gstawscredentials.cpp.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class Aws::STS::Model::AssumeRoleRequest & __cdecl Aws::STS::Model::AssumeRoleRequest::WithRoleSessionName(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &)" (__imp_?WithRoleSessionName@AssumeRoleRequest@Model@STS@Aws@@QEAAAEAV1234@AEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z) referenced in function "class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)
gstawscredentials.cpp.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const & __cdecl Aws::STS::Model::Credentials::GetAccessKeyId(void)const " (__imp_?GetAccessKeyId@Credentials@Model@STS@Aws@@QEBAAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) referenced in function "class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)
gstawscredentials.cpp.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const & __cdecl Aws::STS::Model::Credentials::GetSecretAccessKey(void)const " (__imp_?GetSecretAccessKey@Credentials@Model@STS@Aws@@QEBAAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) referenced in function "class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)
gstawscredentials.cpp.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const & __cdecl Aws::STS::Model::Credentials::GetSessionToken(void)const " (__imp_?GetSessionToken@Credentials@Model@STS@Aws@@QEBAAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ) referenced in function "class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)
gstawscredentials.cpp.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: __cdecl Aws::STS::Model::Credentials::Credentials(class Aws::STS::Model::Credentials const &)" (__imp_??0Credentials@Model@STS@Aws@@QEAA@AEBV0123@@Z) referenced in function "class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)
gstawscredentials.cpp.obj : error LNK2019: unresolved external symbol "__declspec(dllimport) public: class Aws::STS::Model::Credentials const & __cdecl Aws::STS::Model::AssumeRoleResult::GetCredentials(void)const " (__imp_?GetCredentials@AssumeRoleResult@Model@STS@Aws@@QEBAAEBVCredentials@234@XZ) referenced in function "class std::unique_ptr<class Aws::Auth::AWSCredentialsProvider,struct std::default_delete<class Aws::Auth::AWSCredentialsProvider> > __cdecl _gst_aws_credentials_assume_role(char const *,class std::shared_ptr<class Aws::Auth::AWSCredentialsProvider>)" (?_gst_aws_credentials_assume_role@@YA?AV?$unique_ptr@VAWSCredentialsProvider@Auth@Aws@@U?$default_delete@VAWSCredentialsProvider@Auth@Aws@@@std@@@std@@PEBDV?$shared_ptr@VAWSCredentialsProvider@Auth@Aws@@@2@@Z)
aws-cpp-sdk-core.lib(Net.obj) : error LNK2019: unresolved external symbol __imp_WSAStartup referenced in function "void __cdecl Aws::Net::InitNetwork(void)" (?InitNetwork@Net@Aws@@YAXXZ)
aws-cpp-sdk-core.lib(Net.obj) : error LNK2019: unresolved external symbol __imp_WSACleanup referenced in function "void __cdecl Aws::Net::CleanupNetwork(void)" (?CleanupNetwork@Net@Aws@@YAXXZ)
aws-cpp-sdk-core.lib(FileSystem.obj) : error LNK2019: unresolved external symbol __imp_GetUserProfileDirectoryW referenced in function "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Aws::FileSystem::GetHomeDirectory(void)" (?GetHomeDirectory@FileSystem@Aws@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
aws-cpp-sdk-core.lib(OSVersionInfo.obj) : error LNK2019: unresolved external symbol GetFileVersionInfoSizeA referenced in function "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Aws::OSVersionInfo::ComputeOSVersionString(void)" (?ComputeOSVersionString@OSVersionInfo@Aws@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
aws-cpp-sdk-core.lib(OSVersionInfo.obj) : error LNK2019: unresolved external symbol GetFileVersionInfoA referenced in function "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Aws::OSVersionInfo::ComputeOSVersionString(void)" (?ComputeOSVersionString@OSVersionInfo@Aws@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
aws-cpp-sdk-core.lib(OSVersionInfo.obj) : error LNK2019: unresolved external symbol VerQueryValueA referenced in function "class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > __cdecl Aws::OSVersionInfo::ComputeOSVersionString(void)" (?ComputeOSVersionString@OSVersionInfo@Aws@@YA?AV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@XZ)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_bind referenced in function "public: int __cdecl Aws::Net::SimpleUDP::Bind(struct sockaddr const *,unsigned __int64)const " (?Bind@SimpleUDP@Net@Aws@@QEBAHPEBUsockaddr@@_K@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_closesocket referenced in function "public: __cdecl Aws::Net::SimpleUDP::~SimpleUDP(void)" (??1SimpleUDP@Net@Aws@@QEAA@XZ)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_connect referenced in function "public: int __cdecl Aws::Net::SimpleUDP::Connect(struct sockaddr const *,unsigned __int64)" (?Connect@SimpleUDP@Net@Aws@@QEAAHPEBUsockaddr@@_K@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_ioctlsocket referenced in function "private: void __cdecl Aws::Net::SimpleUDP::CreateSocket(int,unsigned __int64,unsigned __int64,bool)" (?CreateSocket@SimpleUDP@Net@Aws@@AEAAXH_K0_N@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_htons referenced in function "struct sockaddr_in __cdecl Aws::Net::BuildAddrInfoIPV4(char const *,short)" (?BuildAddrInfoIPV4@Net@Aws@@YA?AUsockaddr_in@@PEBDF@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_recv referenced in function "public: int __cdecl Aws::Net::SimpleUDP::ReceiveData(unsigned char *,unsigned __int64)const " (?ReceiveData@SimpleUDP@Net@Aws@@QEBAHPEAE_K@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_recvfrom referenced in function "public: int __cdecl Aws::Net::SimpleUDP::ReceiveDataFrom(struct sockaddr *,unsigned __int64 *,unsigned char *,unsigned __int64)const " (?ReceiveDataFrom@SimpleUDP@Net@Aws@@QEBAHPEAUsockaddr@@PEA_KPEAE_K@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_send referenced in function "public: int __cdecl Aws::Net::SimpleUDP::SendData(unsigned char const *,unsigned __int64)const " (?SendData@SimpleUDP@Net@Aws@@QEBAHPEBE_K@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_sendto referenced in function "public: int __cdecl Aws::Net::SimpleUDP::SendDataTo(struct sockaddr const *,unsigned __int64,unsigned char const *,unsigned __int64)const " (?SendDataTo@SimpleUDP@Net@Aws@@QEBAHPEBUsockaddr@@_KPEBE1@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_setsockopt referenced in function "private: void __cdecl Aws::Net::SimpleUDP::CreateSocket(int,unsigned __int64,unsigned __int64,bool)" (?CreateSocket@SimpleUDP@Net@Aws@@AEAAXH_K0_N@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_socket referenced in function "private: void __cdecl Aws::Net::SimpleUDP::CreateSocket(int,unsigned __int64,unsigned __int64,bool)" (?CreateSocket@SimpleUDP@Net@Aws@@AEAAXH_K0_N@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_WSAGetLastError referenced in function "private: void __cdecl Aws::Net::SimpleUDP::CreateSocket(int,unsigned __int64,unsigned __int64,bool)" (?CreateSocket@SimpleUDP@Net@Aws@@AEAAXH_K0_N@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_getaddrinfo referenced in function "bool __cdecl Aws::Net::GetASockAddrFromHostName(char const *,void *,unsigned __int64 &,int &)" (?GetASockAddrFromHostName@Net@Aws@@YA_NPEBDPEAXAEA_KAEAH@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_freeaddrinfo referenced in function "bool __cdecl Aws::Net::GetASockAddrFromHostName(char const *,void *,unsigned __int64 &,int &)" (?GetASockAddrFromHostName@Net@Aws@@YA_NPEBDPEAXAEA_KAEAH@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol __imp_inet_pton referenced in function "bool __cdecl Aws::Net::IsValidIPAddress(char const *,int)" (?IsValidIPAddress@Net@Aws@@YA_NPEBDH@Z)
aws-cpp-sdk-core.lib(SimpleUDP.obj) : error LNK2019: unresolved external symbol inet_ntop referenced in function "public: __cdecl Aws::Net::SimpleUDP::SimpleUDP(char const *,unsigned short,unsigned __int64,unsigned __int64,bool)" (??0SimpleUDP@Net@Aws@@QEAA@PEBDG_K1_N@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptOpenAlgorithmProvider referenced in function "public: __cdecl Aws::Utils::Crypto::SecureRandomBytes_BCrypt::SecureRandomBytes_BCrypt(void)" (??0SecureRandomBytes_BCrypt@Crypto@Utils@Aws@@QEAA@XZ)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptGetProperty referenced in function "public: __cdecl Aws::Utils::Crypto::BCryptHashImpl::BCryptHashImpl(wchar_t const *,bool)" (??0BCryptHashImpl@Crypto@Utils@Aws@@QEAA@PEB_W_N@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptSetProperty referenced in function "protected: void __cdecl Aws::Utils::Crypto::BCryptSymmetricCipher::InitKey(void)" (?InitKey@BCryptSymmetricCipher@Crypto@Utils@Aws@@IEAAXXZ)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptCloseAlgorithmProvider referenced in function "public: virtual __cdecl Aws::Utils::Crypto::SecureRandomBytes_BCrypt::~SecureRandomBytes_BCrypt(void)" (??1SecureRandomBytes_BCrypt@Crypto@Utils@Aws@@UEAA@XZ)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptEncrypt referenced in function "public: virtual class Aws::Utils::CryptoBuffer __cdecl Aws::Utils::Crypto::BCryptSymmetricCipher::EncryptBuffer(class Aws::Utils::CryptoBuffer const &)" (?EncryptBuffer@BCryptSymmetricCipher@Crypto@Utils@Aws@@UEAA?AVCryptoBuffer@34@AEBV534@@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptDecrypt referenced in function "public: virtual class Aws::Utils::CryptoBuffer __cdecl Aws::Utils::Crypto::BCryptSymmetricCipher::DecryptBuffer(class Aws::Utils::CryptoBuffer const &)" (?DecryptBuffer@BCryptSymmetricCipher@Crypto@Utils@Aws@@UEAA?AVCryptoBuffer@34@AEBV534@@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptExportKey referenced in function "public: virtual class Aws::Utils::CryptoBuffer __cdecl Aws::Utils::Crypto::AES_KeyWrap_Cipher_BCrypt::FinalizeEncryption(void)" (?FinalizeEncryption@AES_KeyWrap_Cipher_BCrypt@Crypto@Utils@Aws@@UEAA?AVCryptoBuffer@34@XZ)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptImportKey referenced in function "protected: static void * __cdecl Aws::Utils::Crypto::BCryptSymmetricCipher::ImportKeyBlob(void *,class Aws::Utils::CryptoBuffer &)" (?ImportKeyBlob@BCryptSymmetricCipher@Crypto@Utils@Aws@@KAPEAXPEAXAEAVCryptoBuffer@34@@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptDestroyKey referenced in function "private: void __cdecl Aws::Utils::Crypto::BCryptSymmetricCipher::Cleanup(void)" (?Cleanup@BCryptSymmetricCipher@Crypto@Utils@Aws@@AEAAXXZ)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptCreateHash referenced in function "public: __cdecl Aws::Utils::Crypto::BCryptHashContext::BCryptHashContext(void *,unsigned char *,unsigned long)" (??0BCryptHashContext@Crypto@Utils@Aws@@QEAA@PEAXPEAEK@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptHashData referenced in function "private: class Aws::Utils::Outcome<class Aws::Utils::Array<unsigned char>,bool> __cdecl Aws::Utils::Crypto::BCryptHashImpl::HashData(class Aws::Utils::Crypto::BCryptHashContext const &,unsigned char *,unsigned long)" (?HashData@BCryptHashImpl@Crypto@Utils@Aws@@AEAA?AV?$Outcome@V?$Array@E@Utils@Aws@@_N@34@AEBVBCryptHashContext@234@PEAEK@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptFinishHash referenced in function "private: class Aws::Utils::Outcome<class Aws::Utils::Array<unsigned char>,bool> __cdecl Aws::Utils::Crypto::BCryptHashImpl::HashData(class Aws::Utils::Crypto::BCryptHashContext const &,unsigned char *,unsigned long)" (?HashData@BCryptHashImpl@Crypto@Utils@Aws@@AEAA?AV?$Outcome@V?$Array@E@Utils@Aws@@_N@34@AEBVBCryptHashContext@234@PEAEK@Z)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptDestroyHash referenced in function "public: __cdecl Aws::Utils::Crypto::BCryptHashContext::~BCryptHashContext(void)" (??1BCryptHashContext@Crypto@Utils@Aws@@QEAA@XZ)
aws-cpp-sdk-core.lib(CryptoImpl.obj) : error LNK2019: unresolved external symbol BCryptGenRandom referenced in function "public: virtual void __cdecl Aws::Utils::Crypto::SecureRandomBytes_BCrypt::GetBytes(unsigned char *,unsigned __int64)" (?GetBytes@SecureRandomBytes_BCrypt@Crypto@Utils@Aws@@UEAAXPEAE_K@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_InternetOpenA referenced in function "public: __cdecl Aws::Http::WinINetSyncHttpClient::WinINetSyncHttpClient(struct Aws::Client::ClientConfiguration const &)" (??0WinINetSyncHttpClient@Http@Aws@@QEAA@AEBUClientConfiguration@Client@2@@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_InternetCloseHandle referenced in function "public: virtual __cdecl Aws::Http::WinINetSyncHttpClient::~WinINetSyncHttpClient(void)" (??1WinINetSyncHttpClient@Http@Aws@@UEAA@XZ)
aws-cpp-sdk-core.lib(WinINetConnectionPoolMgr.obj) : error LNK2001: unresolved external symbol __imp_InternetCloseHandle
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_InternetReadFile referenced in function "private: virtual bool __cdecl Aws::Http::WinINetSyncHttpClient::DoReadData(void *,char *,unsigned __int64,unsigned __int64 &)const " (?DoReadData@WinINetSyncHttpClient@Http@Aws@@EEBA_NPEAXPEAD_KAEA_K@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_InternetWriteFile referenced in function "private: virtual unsigned __int64 __cdecl Aws::Http::WinINetSyncHttpClient::DoWriteData(void *,char *,unsigned __int64,bool)const " (?DoWriteData@WinINetSyncHttpClient@Http@Aws@@EEBA_KPEAXPEAD_K_N@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_InternetSetOptionA referenced in function "public: __cdecl Aws::Http::WinINetSyncHttpClient::WinINetSyncHttpClient(struct Aws::Client::ClientConfiguration const &)" (??0WinINetSyncHttpClient@Http@Aws@@QEAA@AEBUClientConfiguration@Client@2@@Z)
aws-cpp-sdk-core.lib(WinINetConnectionPoolMgr.obj) : error LNK2001: unresolved external symbol __imp_InternetSetOptionA
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_HttpOpenRequestA referenced in function "private: virtual void * __cdecl Aws::Http::WinINetSyncHttpClient::OpenRequest(class std::shared_ptr<class Aws::Http::HttpRequest> const &,void *,class std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?OpenRequest@WinINetSyncHttpClient@Http@Aws@@EEBAPEAXAEBV?$shared_ptr@VHttpRequest@Http@Aws@@@std@@PEAXAEBV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_HttpAddRequestHeadersA referenced in function "private: virtual void __cdecl Aws::Http::WinINetSyncHttpClient::DoAddHeaders(void *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)const " (?DoAddHeaders@WinINetSyncHttpClient@Http@Aws@@EEBAXPEAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_HttpSendRequestExA referenced in function "private: virtual bool __cdecl Aws::Http::WinINetSyncHttpClient::DoSendRequest(void *)const " (?DoSendRequest@WinINetSyncHttpClient@Http@Aws@@EEBA_NPEAX@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_HttpEndRequestA referenced in function "private: virtual bool __cdecl Aws::Http::WinINetSyncHttpClient::DoReceiveResponse(void *)const " (?DoReceiveResponse@WinINetSyncHttpClient@Http@Aws@@EEBA_NPEAX@Z)
aws-cpp-sdk-core.lib(WinINetSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_HttpQueryInfoA referenced in function "private: virtual bool __cdecl Aws::Http::WinINetSyncHttpClient::DoQueryHeaders(void *,class std::shared_ptr<class Aws::Http::HttpResponse> &,class std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> > &,unsigned __int64 &)const " (?DoQueryHeaders@WinINetSyncHttpClient@Http@Aws@@EEBA_NPEAXAEAV?$shared_ptr@VHttpResponse@Http@Aws@@@std@@AEAV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@5@AEA_K@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpOpen referenced in function "public: __cdecl Aws::Http::WinHttpSyncHttpClient::WinHttpSyncHttpClient(struct Aws::Client::ClientConfiguration const &)" (??0WinHttpSyncHttpClient@Http@Aws@@QEAA@AEBUClientConfiguration@Client@2@@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpCloseHandle referenced in function "public: virtual __cdecl Aws::Http::WinHttpSyncHttpClient::~WinHttpSyncHttpClient(void)" (??1WinHttpSyncHttpClient@Http@Aws@@UEAA@XZ)
aws-cpp-sdk-core.lib(WinHttpConnectionPoolMgr.obj) : error LNK2001: unresolved external symbol __imp_WinHttpCloseHandle
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpReadData referenced in function "private: virtual bool __cdecl Aws::Http::WinHttpSyncHttpClient::DoReadData(void *,char *,unsigned __int64,unsigned __int64 &)const " (?DoReadData@WinHttpSyncHttpClient@Http@Aws@@EEBA_NPEAXPEAD_KAEA_K@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpWriteData referenced in function "private: virtual unsigned __int64 __cdecl Aws::Http::WinHttpSyncHttpClient::DoWriteData(void *,char *,unsigned __int64,bool)const " (?DoWriteData@WinHttpSyncHttpClient@Http@Aws@@EEBA_KPEAXPEAD_K_N@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpSetOption referenced in function "public: __cdecl Aws::Http::WinHttpSyncHttpClient::WinHttpSyncHttpClient(struct Aws::Client::ClientConfiguration const &)" (??0WinHttpSyncHttpClient@Http@Aws@@QEAA@AEBUClientConfiguration@Client@2@@Z)
aws-cpp-sdk-core.lib(WinHttpConnectionPoolMgr.obj) : error LNK2001: unresolved external symbol __imp_WinHttpSetOption
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpSetTimeouts referenced in function "public: __cdecl Aws::Http::WinHttpSyncHttpClient::WinHttpSyncHttpClient(struct Aws::Client::ClientConfiguration const &)" (??0WinHttpSyncHttpClient@Http@Aws@@QEAA@AEBUClientConfiguration@Client@2@@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpOpenRequest referenced in function "private: virtual void * __cdecl Aws::Http::WinHttpSyncHttpClient::OpenRequest(class std::shared_ptr<class Aws::Http::HttpRequest> const &,void *,class std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> > const &)const " (?OpenRequest@WinHttpSyncHttpClient@Http@Aws@@EEBAPEAXAEBV?$shared_ptr@VHttpRequest@Http@Aws@@@std@@PEAXAEBV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@5@@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpAddRequestHeaders referenced in function "private: virtual void __cdecl Aws::Http::WinHttpSyncHttpClient::DoAddHeaders(void *,class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > &)const " (?DoAddHeaders@WinHttpSyncHttpClient@Http@Aws@@EEBAXPEAXAEAV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpSendRequest referenced in function "private: virtual bool __cdecl Aws::Http::WinHttpSyncHttpClient::DoSendRequest(void *)const " (?DoSendRequest@WinHttpSyncHttpClient@Http@Aws@@EEBA_NPEAX@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpReceiveResponse referenced in function "private: virtual bool __cdecl Aws::Http::WinHttpSyncHttpClient::DoReceiveResponse(void *)const " (?DoReceiveResponse@WinHttpSyncHttpClient@Http@Aws@@EEBA_NPEAX@Z)
aws-cpp-sdk-core.lib(WinHttpSyncHttpClient.obj) : error LNK2019: unresolved external symbol __imp_WinHttpQueryHeaders referenced in function "private: virtual bool __cdecl Aws::Http::WinHttpSyncHttpClient::DoQueryHeaders(void *,class std::shared_ptr<class Aws::Http::HttpResponse> &,class std::basic_stringstream<char,struct std::char_traits<char>,class std::allocator<char> > &,unsigned __int64 &)const " (?DoQueryHeaders@WinHttpSyncHttpClient@Http@Aws@@EEBA_NPEAXAEAV?$shared_ptr@VHttpResponse@Http@Aws@@@std@@AEAV?$basic_stringstream@DU?$char_traits@D@std@@V?$allocator@D@2@@5@AEA_K@Z)
aws-cpp-sdk-core.lib(WinINetConnectionPoolMgr.obj) : error LNK2019: unresolved external symbol __imp_InternetConnectA referenced in function "private: virtual void * __cdecl Aws::Http::WinINetConnectionPoolMgr::CreateNewConnection(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class Aws::Http::WinConnectionPoolMgr::HostConnectionContainer &)const " (?CreateNewConnection@WinINetConnectionPoolMgr@Http@Aws@@EEBAPEAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAVHostConnectionContainer@WinConnectionPoolMgr@23@@Z)
aws-cpp-sdk-core.lib(WinHttpConnectionPoolMgr.obj) : error LNK2019: unresolved external symbol __imp_WinHttpConnect referenced in function "private: virtual void * __cdecl Aws::Http::WinHttpConnectionPoolMgr::CreateNewConnection(class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> > const &,class Aws::Http::WinConnectionPoolMgr::HostConnectionContainer &)const " (?CreateNewConnection@WinHttpConnectionPoolMgr@Http@Aws@@EEBAPEAXAEBV?$basic_string@DU?$char_traits@D@std@@V?$allocator@D@2@@std@@AEAVHostConnectionContainer@WinConnectionPoolMgr@23@@Z)
src\gstawscredentials-1.0.dll : fatal error LNK1120: 66 unresolved externals
[7/12] Compiling C++ object src/libmultipartuploader.a.p/gsts3multipartuploader.cpp.obj
ninja: build stopped: subcommand failed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.