configure: error: cannot run C compiled programs

后端 未结 2 1829
刺人心
刺人心 2021-02-14 10:51

I\'m trying to install different software onto my Raspberry Pi with Debian Wheezy OS. When I run try to configure software I\'m trying to install I get this output



        
2条回答
  •  甜味超标
    2021-02-14 11:56

    The problem here has been resolved by:

    export PATH=/path/to/gcc-4.9.2/bin/:$PATH
    export LD_LIBRARY_PATH=/path/to/gcc-4.9.2/lib64/:$LD_LIBRARY_PATH
    ./configure --prefix=/path/to/  --host=arm
    

    Hope this will help you.

提交回复
热议问题