Questions tagged [make]

Make is a utility that automatically builds executable programs and libraries from source code by reading files called makefiles which specify how to derive the target program.

Make can decide where to start through topological sorting. Though integrated development environments and language-specific compiler features can also be used to manage the build process in modern systems, Make remains widely used, especially in Unix.

778 questions
192
votes
3 answers

"autoreconf: not found" error during making qemu-1.4.0

I was ./configure'd the qemu-1.4.0 and during make it cause: (cd /home/amin/Simulate/qemu-1.4.0/pixman; autoreconf -v --install) /bin/sh: 1: autoreconf: not found make: *** [/home/amin/Simulate/qemu-1.4.0/pixman/configure] Error 127 Now, I can't…
159
votes
4 answers

How do I install make?

/usr/bin/perl install-module.pl --all ERROR: Using install-module.pl requires that you install "make". I need to install make on my ubuntu on AWS EC2. How can I do that ? I could finally install build-essential also successfully. # make make: ***…
Deepak Singhal
  • 1,797
  • 2
  • 12
  • 8
156
votes
6 answers

Make Command Not Found

I am having a problem that doesn't seem to be common based on searching various forums. I cannot run the Make command. Message: The program 'make' is currently not installed. You can install it by typing: sudo apt-get install make So do this: sudo…
snoopdogg
  • 1,561
47
votes
5 answers

how to fix configure: error: C compiler cannot create executables

used ./configure DFLAGS="-03" and this is the config.log checking build system type... i686-pc-linux-gnu checking host system type... i686-pc-linux-gnu checking target system type... i686-pc-linux-gnu checking for a BSD-compatible…
Mike O
  • 571
  • 1
  • 4
  • 6
46
votes
3 answers

I installed a program by getting its source code, and then running `sudo make install`; how to make `apt-get` know about it?

I installed program (call it, for example,progA) by building it from source code, and then finally calling sudo make install and sudo ldconfig. However, it seems apt-get hasn't gotten the memo, because when installing progB, which depends on progA,…
user390136
36
votes
5 answers

"fatal error: gtk/gtk.h: No such file or directory" using make

I am trying to use make command to build. I am following this. I am compiling a code using GTK+2 and C language hp@ubuntu:~/amhello$ make make all-recursive make[1]: Entering directory `/home/hp/amhello' Making all in src make[2]: Entering…
osama
  • 1,111
29
votes
1 answer

What does "./configure; make; make install" do?

What does ./configure do? Why make then make install? How does it know where libs are? ( they are all there and loaded but it cant find them.) Why need libs if compiler is supposed to compile?
david
  • 433
24
votes
4 answers

Can't run make - gcc: command not found

I'm trying to follow a tutorial to get CudaMiner working on Linux. I have PAINSTAKINGLY installed NVidia drivers, Cuda 5.0 and incidentally I'm failing on the last step when I run make: make all-recursive make[1]: Entering directory…
dsp_099
  • 356
24
votes
9 answers

How to completely remove my Emacs?

I downloaded Emacs source files, and installed it using make. After installing Emacs successfully, I manually removed the downloaded source files to save disk space. Now I want to remove Emacs and I tried to use sudo apt-get purge emacs. But it says…
Yang Wenhao
  • 343
  • 1
  • 2
  • 6
22
votes
4 answers

How to run parallel make with debuild?

I am trying to make a package of a piece of software that I've (co-) written. I'm using debuild -i -us -uc -b And in principle that works fine. In order to shorten compilation time I'd like to debuild to run make in parallel (like I normally do…
ph0t0nix
  • 1,397
20
votes
4 answers

How to know which command is being executed without stopping it?

In my example, I am running a command that takes very long to be executed (several hours). I don't really remember if I entered make or make -j4. Of course I could stop it and press up key or check history to know it, but that would stop the process…
19
votes
5 answers

"/usr/bin/ld: cannot find -lcudart"

I am newbie to Ubuntu and using Ubuntu 14.04 64-bit. I want to make a project that uses cuda and opencv I got the following error when running cmake . && make Linking CXX executable ground_estimation /usr/bin/ld: cannot find -lcudart collect2:…
Arash
  • 303
  • 1
  • 4
  • 9
19
votes
2 answers

/bin/sh is a symbolic link that doesn't point to /bin/bash

I was installing the software environment of Armadeus experiment board APF27DEV, and when I tried the make command, it gave me the following error message: On your system /bin/sh is a symbolic link that doesn't point to /bin/bash --> please correct…
batur
  • 193
18
votes
6 answers

How to install termite

I'm using openbox on UbuntuGnome .. if that helps. So I reviewed the documentation located here: https://wiki.archlinux.org/index.php/Termite and I can't figure out how to install it. I'm very novice and would just like a simple explanation is…
Pepe
  • 1,008
16
votes
7 answers

How to install watchman on Ubuntu 18.04, for react-native? error in make command

I have read this solution . I wanted nodeman as dependency for react-native no error upto ./configure command and it works fine as given solution gd@gd10:/tmp$ git clone https://github.com/facebook/watchman.git Cloning into 'watchman'... remote:…
1
2 3
51 52