- 最新
- 投票最多
- 评论最多
Please, can you just give us (or just me) the compiled files for both Window and Linux? Basically, we just need three files:
- out\prefix\bin\aws-cpp-sdk-gamelift-server.dll
- out\prefix\lib\aws-cpp-sdk-gamelift-server.lib
- out/prefix/lib/libaws-cpp-sdk-gamelift-server.so
It's senseless to have customer build these for themselves when they won't have the same SDK environments as you guys. Just included it with your source code. If customer don't want it, they can just rebuild it themselves.
Already spent two days setting up Linux Virtual Machine and trying to find gamelift sdk version that can be compile across both platforms.
This is sad for something that should take 10 minutes to do.
Hi, our service team is taking a look at this issue. Sorry for the inconvenience!
UPDATE 06/20/2023:
Our service team was able to build C++ SDK 5.0.4 successfully on Amazon Linux 2 using these commands:
mkdir out
cd out
cmake -G "Unix Makefiles" -DBUILD_FOR_UNREAL=1 .. # We also tried omitting `-G`, which worked and defaulted to `Unix Makefiles`
make
This results in the libaws-cpp-sdk-gamelift-server.so file in build/prefix/lib directory. Our gcc version is 7.3.1
, openssl version is 1.0.2k
, cmake version is 3.25.3
Could you please provide some more details for us to conduct further investigations?
- Platform for your build environment (ubuntu, redhat, macos, etc.)
- gcc version
- openssl version
- cmake version
- Full error messages for the compile errors
No you don't get it. We couldn't compile SDK 5.0.4 because it gave out a lot of errors on Window Build:
We had to revert back to legacy 2021 version, which has no problem with Window Build. But its .SO file couldn't be compiled on Linux due to depreciated symbol errors.
So basically there's no version that can be compile successfully across both Window and Linux platform.
- Best
相关内容
- AWS 官方已更新 1 年前
Did you figure it out?