This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

am335x qtcretor 编译报错 gnu/stubs-soft.h: No such file or directory

  • 前提

        a.平台 :BeagleboneBlack REV C
        b.SDK: ti-processor-sdk-linux-am335x-evm-04.03.00.05
        c.参考官网配置processors.wiki.ti.com/.../Sitara_Linux_Training:_Hands_on_with_QT

       d.在linux-devkit\sysroots\armv7ahf-neon-linux-gnueabi\usr\include\gnu目录下的确没找到stubs-soft.h文件,而是另一个文件stubs-hard.h

         

在stubs.h中有这样一段代码

#if !defined __ARM_PCS_VFP
# include <gnu/stubs-soft.h>
#endif
#if defined __ARM_PCS_VFP
# include <gnu/stubs-hard.h>
#endif

        e.论坛还有同样的客户提问,好像没解决 ( )

f.在QT上也找到了这个BUG,但没给解决方案 (https://bugreports.qt.io/browse/QTCREATORBUG-17851)

Q:怎么解决啊