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.

768 questions
9
votes
2 answers

Error in make install: "cannot copy file"

I am trying to install CLHEP 2.3.4.4 and I am stuck, getting an error in make install: [ 99%] Built target exctest3 [ 99%] Built target exctestNothrow [100%] Built target testzmex Install the project... -- Install configuration: "RelWithDebInfo" --…
7
votes
1 answer

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: ***…
6
votes
2 answers

make (use of -j option)

I'm trying to undersand the true meaning of -j option in make command. According to manual, with this option the user can "specifie the number of jobs to run simultaneously". What I actually want to understand is the link between the numeric value…
6
votes
0 answers

cannot find -lstdc++

I'm trying to use make but I keep getting this error. Tried make clean, updating cpp and some other stuff. cc1plus: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++ creating…
3
votes
1 answer

Error while install vte-eg 'No package 'libpcre2-8' found'?

make is giving me the following error while trying to install vte-eg ./autogen.sh && make && sudo make install configure: error: Package requirements (glib-2.0 >= 2.40.0 gobject-2.0 pango >= 1.22.0 gtk+-3.0 >= 3.8.0 gobject-2.0 gio-2.0 gio-unix-2.0…
Ahmed Eid
  • 281
3
votes
1 answer

make install: cannot run strip: No such file or directory

root@server:~/shc-3.8.9# make install *** Installing shc and shc.1 on /usr/local *** Do you want to continue? y install -c -s shc /usr/local/bin/ install: cannot run strip: No such file or directory install: strip process terminated…
2
votes
2 answers

freetds ./configure unrecognized option --prefix

I'm trying to compile freetds according to these instructions: http://www.mavrick.id.au/2012/php-5-3-6-mssql-freetds/ However configure is failing. My command is: ./configure --enable-msdblib -–prefix=/usr/local/freetds I'm getting configure:…
jdog
  • 125
2
votes
1 answer

Downgrade make 4.1 to 3.82

I am new to ubuntu.I have a 16.04 LTS ubuntu.I have make 4.1.I need to downgrade it to 3.81 or 3.82.I have tried a lot of solutions but none of them seem to work. I have tried using the synaptic manager too but it doesnt show force version option.
2
votes
1 answer

Missing readline library or readline.h (Already tried other solutions)

I am trying to install an open source project Rosie Pattern Language (RPL) via the make command. I am getting this error: Missing readline library or readline.h. I have installed the required readline packages via sudo apt-get install…
James Henderson
  • 21
  • 1
  • 1
  • 3
1
vote
2 answers

Is it any way to temporarily install make 3.81?

I'm in Xubuntu 16.04.1, having make version 4.1. I have some suspicions about this version, and would like to temporarily install the old version (3.81), which works fine with my package on another older machine. What's the most safe way to do that?…
HEKTO
  • 555
  • 1
  • 8
  • 24
1
vote
1 answer

Compilation error /usr/bin/ld: cannot find -lz

I encountered with this error while attempted compiling fasta36 on my Ubuntu 12.04.3 64 bit machine: /usr/bin/ld: cannot find -lz collect2: ld returned 1 exit status make: *** [fasta36] Error 1 I used following command: make -f…
1
vote
1 answer

I am trying to build and install this driver but failing

I have followed the INSTALL directions and say these ./autogen.sh make make install I have succeed executing the ./autgen.sh but when im typing make this error comes: make:*** No targets specified and no makefile found. Stop. the…
user184496
  • 15
  • 4
1
vote
1 answer

Upgrading GMP to 5.0.5

I tried building GMP 5.0.5, and now when I'm trying to build MPFR, it starts checking for gmp.h and libgmp. The MPFR gives me an error that gmp.h (5.0.5) and libgmp (5.0.2) do not match, and MPFR is giving me the above error during make when it…
1
vote
1 answer

gitslave make install not working?

After upgrading to 12.04, I'm trying to setup gitslave. This worked on 11.10 with version gitslave 2.0.1 (FYI: I tested 2.0.1 on 12.04...same result). $ tar xvzf…
timborden
  • 113
1
vote
1 answer

Using braces in rm in makefiles

So I'm learning about Makefiles and in an example, I was to remove files in the clean part. I wanted to do something along the lines of rm paper.{aux,pdf,bib,bbl}, but when I did make clean it didn't recognize any files like that. Doing that remove…
1
2 3 4