Build git on embedded system

Posted by naive231 on Programmers See other posts from Programmers or by naive231
Published on 2012-12-12T05:57:03Z Indexed on 2012/12/12 11:18 UTC
Read the original article Hit count: 215

Filed under:

I want to build git on our embedded system and I got git's source code from here.

I run ./configure tool with following arguments:

./configure --build=arm-eabi --host=`uname -p`-`uname -s`-`uname -o`

Configure tool runs, and returns an error says:

checking whether system succeeds to read fopen'ed directory...configure: error: in`/home/git-1.8.0.2`.

I set necessary environment variables like CC and CXX to our tool chain already, so ./configure complains nothing about compilers. But I have no idea about that error message. It looks like some permission problem, but I have full permission of /home/git-1.8.0.2 for sure. Any idea ?

© Programmers or respective owner

Related posts about git