rolinh / dfc

Report file system space usage information with style
BSD 3-Clause "New" or "Revised" License
106 stars 10 forks source link

Howto Build dfc for arm-linux-gnueabi #14

Closed sebma closed 7 years ago

sebma commented 7 years ago

Hi,

I'd like to know how to build dfc for arm-linux-gnueabi ?

Can you help ?

rolinh commented 7 years ago

Hi,

I assume you mean to cross-compile it for this architecture. In this case, it should be something like that (untested), assuming the compiler is installed and is arm-linux-gnueabi-gcc:

$ mkdir build && cd build
$ CC=arm-linux-gnueabi-gcc cmake ..
$ make

Of course, you can still follow the explanation in the README file about the various build options or use ccmake instead of cmake for a TUI interface.

sebma commented 7 years ago

Thank you :)

rolinh commented 7 years ago

You're welcome.