Questions tagged [make-install]
50 questions
1
vote
1 answer
Run make install command in cmake from another cmake file
We have multiple libraries in different folder, The main application needs to build those libraries in other folders and install them to output folder and then the main application needs to link to libraries to build executable.
I am able to build…

Manjunath Gumma
- 11
- 2
1
vote
0 answers
ERROR (make: *** No rule to make target `check'. Stop.)
I want to download an API called libtrading, the process to download it in terminal is as the follows,
OSX
$ brew install libevent glib pkgconfig
$ pip install pyyaml
Then run:
$ make install
You can also run the test harness:
$ make check
I have…

Chelsea Yang
- 29
- 6
1
vote
2 answers
Smokeping make install error
i try to install newest version smokeping and get error when run "make install". I do everything as written on the official website.
make[1]: Entering directory '/home/artemto/smokeping-2.7.2/thirdparty'
echo "If the moduile install hangs, this may…

Artem.T
- 11
- 3
1
vote
0 answers
Make install creates wrong file path
I try to install Torcs, while make works, make install stops with an error:
/usr/bin/install: cannot create regular file '/usr/local/bin//torcs': Permission denied
The path is quite obviously wrong I guess, there shouldn't be //, but only a single…

Natjo
- 2,005
- 29
- 75
1
vote
1 answer
Error while installing OpenALPR on Raspberry PI 3
I have just started using Raspberry PI 3. I'm trying to install an open source library named as OpenALPR on it. It's a library that takes an image of a vehicle's license plate as an argument and returns the text written on it. I've been following…

Gaurav Gilalkar
- 128
- 2
- 13
1
vote
0 answers
Cmake make install fails with INSTALL cannot find opencv_annotation
Problem:
I am installing OpenCV 3.1.0 with CUDA support in ubuntu 16.04 and for that I chose defined by myself destination folder instead of /usr/local .
cmake and make go on properly, however I get an error upon make install (sudo make install does…

beginh
- 1,133
- 3
- 26
- 36
1
vote
0 answers
CRFsuite installation
During CRFsuite installation while installing libLBFGS to the directory local under the home directory I am not able to run the make command.
I have successfully executed the step $./configure but not able to run make and make install.

Chetana Tailor
- 11
- 2
1
vote
1 answer
make[1]: [install-domserver-l] Error 1 (ignored)
I've been trying to install domjudge on a docker container, but when I execute
sudo make install-domserver
I keep getting this error:
/usr/bin/install -c -m 0644 -o -m 0700 -d /home/domjudge/domjudge/domserver/log
/usr/bin/install: invalid…

Julio Arboleda
- 21
- 10
1
vote
2 answers
QUEX_PATH issue while using tokenizer
I'm trying to install trainable-tokenizer. I have installed all the dependencies as per the README. this is trainable-tokenizer https://github.com/jirkamarsik/trainable-tokenizer. i have installed quex.deb using installer from quex.org which is a…

Tejus Prasad
- 6,322
- 7
- 47
- 75
1
vote
0 answers
how to install gcc4.6.4 on red hat6.4
When I want to install gcc 4.6.4 (now gcc 4.4.7)
/usr/include/gnu/stubs.h:7:27: fatal error: gnu/stubs-32.h: No such file or directory
compilation terminated.
make[5]: *** [_muldi3.o] error 1
make[5]: Leaving directory…

chestnutsJ
- 31
- 2
1
vote
1 answer
gcc make install error
I try to compile gcc with make install and it gives me this:
make[1]: Entering directory `/media/BOSS/sources/gcc-build'
/bin/bash ../gcc-4.8.1/mkinstalldirs /tools /tools
/bin/bash: line 3: cd: ./fixincludes: No such file or directory
make[1]: ***…

mymindstorm
- 111
- 5
1
vote
2 answers
Directory for files generated by Make during installation from configure, make and make install
Just assume we are installing some libraries from its source distributed by the way GNU promoted. When using "./configure --prefix" to specify where to install.
(1) does Make generate the binaries under the current directory? Does Make install then…

Tim
- 1
- 141
- 372
- 590
0
votes
0 answers
How to solve "no rule to make target 'install'" while installing ffnvcodec (Windows)
I tried to install ffnvcodec for ffmpeg on windows and when I try to install it I get:
make: *** No rule to make target 'install'. Stop.". The command is: "make install PREFIX=/usr
and:
Since I'm still learning, I get that PREFIX=/usr is the…

Danmrk
- 1
- 1
0
votes
0 answers
Setting up environment for group project, getting error when running "make install"
I am setting up the environment for a group project which requires the "make install" command to install ruby and gems. I had to install an older version of Ruby per the project instructions (Ruby 2.7.2) and had to the following first:
rbenv (brew…

S.Y.
- 11
- 1
0
votes
0 answers
Creating and installing nested libraries using CMakeLists
Installing nested libraries brings compilation errors.
I try to have a project called CROSP that contains multiple internal libraries, namely : StrainParameterisation, RodProperties, PolynomialRepresentation. These libraries are then linked to one…

Andrea Gotelli
- 31
- 3