1

I got the source code of unclutter using apt-get source unclutter, and copied the files to my embedded system.

Now, how can I compile it?

--update

I've tried this answer: How to compile and install programs from source but it doesn't work here.. there's no ".configure" and make was not found.

Rui F Ribeiro
  • 56,709
  • 26
  • 150
  • 232
The Student
  • 3,529

1 Answers1

4

In order to compile things on that system, it needs to have make, gcc, and a whole lot of other stuff that's not usually found on embedded devices. Typically, you cross-compile it on another machine then put the binary on the embedded system. You may be lucky enough to not have to compile it. You can get the binary for your architecture and try running it on the system.

Cross compiling is a large topic, and there are lots of tools out there that try to make it easier. Some things to search for: linaro, buildroot, crosstool.

To get the binary, go to packages.debian.org, search for the package that has the binary, download the appropriate one for your architecture (such as arm), open it with an archive manager, and look at the "data" folder - this will have the binaries. It may turn out that the binary needs libraries that are also not installed - you can do the same process - find the package with the library you need, copy the binary over to the target system and try again.

Shawn J. Goff
  • 46,081