Noah Zoschke
Noah Zoschke
This might get added upstream: https://github.com/awslabs/serverless-application-model/issues/377
Great question... one-off admin tasks is not obvious with Lambda in general. Particularly if you are used to interactive admin like “heroku run bash”. The default strategy is to do...
This is now supported upstream: https://github.com/awslabs/aws-sam-cli/releases/tag/v0.6.0
Looks like support is coming soon: https://github.com/awslabs/serverless-application-model/pull/546
Same here, on OS X Big Sur.
This would be extremely useful for Lambda, where an "app" is composed of many Lambda functions, and each function has its own log groups. I'd like to be able to...
Same here, I get this error often even though my app is running in the foreground, iOS idle timer is disabled, and Spotify music is playing continuously in the background....
Doing some googling, cmake looks up to date. ``` % cmake --version cmake version 3.25.0 ``` Setting this doesn't help: https://cmake.org/cmake/help/latest/envvar/CMAKE_APPLE_SILICON_PROCESSOR.html#envvar:CMAKE_APPLE_SILICON_PROCESSOR ``` export CMAKE_APPLE_SILICON_PROCESSOR=arm64 cmake -DCMAKE_BUILD_TYPE=Release ../vimix cmake --build ....
Thanks! It's building with ```diff diff --git a/CMakeLists.txt b/CMakeLists.txt index f200d85..0f1b873 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -59,7 +59,7 @@ if(UNIX) # the RPATH to be used when installing set(CMAKE_SKIP_RPATH...
Reading your link and doing some googling but setting it to these doesn't work for me: - `set(CMAKE_OSX_ARCHITECTURES "x86_64;arm64")` - `set(CMAKE_OSX_ARCHITECTURES "$(ARCHS_STANDARD)")`