Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.34 KB

README.md

File metadata and controls

42 lines (29 loc) · 1.34 KB

aws-lamdba-rust-portal

categorize

Building the crate in OSX

In order to build this project in OSX you must ensure that you have a folder called .cargo with a config file in it. This file must contain exactly this:

[target.x86_64-unknown-linux-musl]
linker = "x86_64-linux-musl-gcc"

Building the crate in Linux

Install the musl-tools:

sudo apt install musl-tools

Remove the .cargo folder if present or comment the contents of the config file.

Common building steps

# this will start the build process
cargo build --release --target x86_64-unknown-linux-musl
# this will create the final zip
zip -j rust.zip ./target/x86_64-unknown-linux-musl/release/bootstrap

A BRIEF OVERVIEW OF API GATEWAY

categorize

AWS RUST LAMDBA 中文说明

说明

AWS Setup

Several AWS resources are needed to follow along in the content. This guide will help you set up the resources needed and will show you how to remove everything as well.