search for: mbedtl

Displaying 3 results from an estimated 3 matches for "mbedtl".

Did you mean: mbedtls
2018 Aug 29
2
Compatibility of GPL 2.0 licensed SSL library
Hi all, I'm wondering if the GPL-2.0 licensed mbedTLS (that's the version in OpenWrt) is 'compatible' with NUT binaries (not including the Python or Perl binaries which aren't used in OpenWrt) which is GPL 2.1+ AIUI. Because mbedTLS is the default library for OpenWrt and NSS is not yet in OpenWrt, and because OpenSSL is considered in...
2016 Jan 30
1
7.2: Problem with upgrade and pdns
Hello everybody, I just wanted to upgrade my system and stepped over the following error: --> Finished Dependency Resolution Error: Package: pdns-3.4.7-1.el7.x86_64 (@epel) Requires: libmbedtls.so.9()(64bit) Removing: mbedtls-1.3.14-1.el7.x86_64 (@epel) libmbedtls.so.9()(64bit) Updated By: mbedtls-2.2.1-1.el7.x86_64 (epel) ~libmbedtls.so.10()(64bit) Error: Package: pdns-tools-3.4.7-1.el7.x86_64 (@epel) Requires: libmbedtls.so....
2019 Aug 21
3
Thumb frame pointer register
Hello all, I noticed that for ARM Thumb target, llc uses r7 as frame pointer (gcc does not do this AFAIK), and this register should therefore not be used as a general-purpose register. However, when compiling mbedTLS, which contains some code that is highly optimized for ARM platform and uses r7 to efficiently perform an operation. This raises an exception since r7 is now the frame pointer. I tried passing -fomit-frame-pointer but this is just a hacky workaround and does not work in this case, since the funct...