We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building with OpenSSL works but I trying to build with CRYPTO=MbedTLS and got an error:
CRYPTO=MbedTLS
make DOCKER=0 TARGET=Linux CRYPTO=MbedTLS apps make[1]: Entering directory '/mnt/work/HomeKitADK' make[1]: *** No rule to make target 'Output/Linux-x86_64-pc-linux-gnu/Debug/IP/Applications/Lightbulb.MbedTLS', needed by 'apps'. Stop. make[1]: Leaving directory '/mnt/work/HomeKitADK' make: *** [Makefile:67: apps] Error 2
Using Ubuntu 20.10 and I have installed libmbedtls-dev
libmbedtls-dev
The text was updated successfully, but these errors were encountered:
Also as a side note: in the Build/Makefile:45 looks like:
OPENSSL_PATH = $(firstword $(wildcard /usr/local/Cellar/[email protected]/*)) MBEDTLS_PATH = $(firstword $(wildcard /usr/include/mbedtls) $(wildcard /usr/local/Cellar/mbedtls/*))
Must be changed to
OPENSSL_PATH = $(firstword $(wildcard /usr/include/openssl) $(wildcard /usr/local/Cellar/[email protected]/*)) MBEDTLS_PATH = $(firstword $(wildcard /usr/include/mbedtls) $(wildcard /usr/local/Cellar/mbedtls/*))
i.e. add the /usr/include/openssl similarly to next line
/usr/include/openssl
Sorry, something went wrong.
No branches or pull requests
Building with OpenSSL works but I trying to build with
CRYPTO=MbedTLS
and got an error:Using Ubuntu 20.10 and I have installed
libmbedtls-dev
The text was updated successfully, but these errors were encountered: