aws-sdk-cpp: full versions builds fine on x86_64-linux

Though the RAM/core requirements are quite high during linking.
This commit is contained in:
Vladimír Čunát 2022-08-31 09:30:47 +02:00
parent a6be71e6fc
commit b77a8d11f2
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -121,6 +121,6 @@ stdenv.mkDerivation rec {
platforms = platforms.unix;
maintainers = with maintainers; [ eelco orivej ];
# building ec2 runs out of memory: cc1plus: out of memory allocating 33554372 bytes after a total of 74424320 bytes
broken = ((builtins.elem "ec2" apis) || (builtins.elem "*" apis));
broken = stdenv.buildPlatform.is32bit && ((builtins.elem "ec2" apis) || (builtins.elem "*" apis));
};
}