解决openssl1.1.0导致ssl1.0.版本的代码出错问题

编译uboot时,错误打印信息:

lib/rsa/rsa-sign.c:279:21: error: dereferencing pointer to incomplete type 'RSA {aka struct rsa_st}'
  if (BN_num_bits(key->e) > 64)
                     ^~
scripts/Makefile.host:134: recipe for target 'tools/lib/rsa/rsa-sign.o' failed

解决openssl1.1.0导致ssl1.0.版本的代码出错问题_第1张图片

通过降级openssl解决

sudo apt install libssl1.0-dev

你可能感兴趣的:(#,Ubuntu环境搭建)