You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can you provide a TRACE level log? (sanitize any sensitive information)
[ 23%] Performing update step for 'amazonSdk'
[ 29%] Performing configure step for 'amazonSdk'
CMake Error at /home/pguillamon/sample-repo/build/src/3rdPartyDependencies/amazonSdk/src/amazonSdk-stamp/amazonSdk-configure-.cmake:16 (message):
Command failed: 1
'/usr/local/bin/cmake' '-DBUILD_ONLY="s3' 'email"' '-GUnix Makefiles' '/home/pguillamon/sample-repo/build/src/3rdPartyDependencies/amazonSdk/src/amazonSdk'
See also
/home/pguillamon/sample-repo/build/src/3rdPartyDependencies/amazonSdk/src/amazonSdk-stamp/amazonSdk-configure-*.log
make[2]: *** [src/3rdPartyDependencies/amazonSdk/src/amazonSdk-stamp/amazonSdk-configure] Error 1
Note the parameter -DBUILD_ONLY="s3;email" has been splitted into two parameters: -DBUILD_ONLY="s3 and email". This is because the script amazonSdk-configure-.cmake generated by cmake uses ; (semicolon) as character separator. It is generated as follows:
Hi due to the internal manner of ExternalProject_Add processing list, could you please update you scripts from -DBUILD_ONLY=\\\"s3;email\\\" to -DBUILD_ONLY='s3|email' or -DBUILD_ONLY=s3|email. AS WELL AS AddingLIST_SEPARATOR "|" to ExternalProject_Add
What platform/OS are you using?
Ubuntu 14.04
What compiler are you using? what version?
gcc 4.8.4
cmake version 3.8.2
What's your CMake arguments?
Can you provide a TRACE level log? (sanitize any sensitive information)
Note the parameter
-DBUILD_ONLY="s3;email"
has been splitted into two parameters:-DBUILD_ONLY="s3
andemail"
. This is because the scriptamazonSdk-configure-.cmake
generated by cmake uses;
(semicolon) as character separator. It is generated as follows:The text was updated successfully, but these errors were encountered: