Build git on embedded system
- by naive231
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 ?