configure: error: cannot run C compiled programs

后端 未结 2 1830
刺人心
刺人心 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:33

    On CoreOS, solved the problem with.

    install.packages('rgdal', type = "source", configure.args='--host=host')
    
    0 讨论(0)
  • 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.

    0 讨论(0)
提交回复
热议问题