Questions tagged [make]

make is an old Unix utility to build projects. The basic principle it uses is to track dependencies between targets (which are often files).

85 questions
0
votes
1 answer

libtldl not found - chekc libtool installation!

I'm on Fedora 8, trying to configure/make libmp3splt, and every time I try to compile I get libtldl not found - chekc libtool installation! I have libtool installed, and some places online said to try installing libltdl-dev, which does't seem to…
Lowgain
  • 237
  • 1
  • 2
  • 7
0
votes
1 answer

Makefile: Expansion of "$<" does not work in "optimized" makefile

I have a directory structure like this: ./ | |- values-1/ | |- thing0.yaml | |- values-2/ | |- thing1.yaml | |- dachart-1/ | |- thing0.yaml (this should be generated by make | from values-1/thing0.yaml) |- dachart-2/ | |-…
flypenguin
  • 193
  • 1
  • 9
0
votes
0 answers

Rebuild installed nginx (openresty) with extra module

I have an Openresty installation with the following configure settings: $ openresty -V 2>&1 nginx version: openresty/1.17.8.1 built by gcc 9.3.0 (Ubuntu 9.3.0-10ubuntu2) built with OpenSSL 1.1.1f 31 Mar 2020 TLS SNI support enabled Wrapped…
0
votes
1 answer

Docker container CMAKE gives crypto/fips/fips.c:153: OpenSSL internal error: FATAL FIPS SELFTEST FAILURE - dracut-fips crypto.fips_enabled = 1

Getting crypto/fips/fips.c:153: OpenSSL internal error: FATAL FIPS SELFTEST FAILURE when dracut-fips package is installed and sysctl -a shows crypto.fips_enabled = 1 Restriction: Can not disable dracut-fips package or crypto.fips_enable setting in…
AKS
  • 115
  • 1
  • 6
0
votes
1 answer

How to set Makefile variable with contents of file

I am trying to set the variable of a Makefile variable if that variable is not set before and a file exists. However, I am having issues overwriting that variable. Any ideas? GITHUB_TOKEN = "" build: if [ -z "$(GITHUB_TOKEN)" ] && [ -f…
0
votes
0 answers

Makefile CMD long path limit

When when I have long paths in my project (250+ characters), when I trigger my makefile it can't find the include files. Is there a way to fix this instead of renaming folders to decrease path length? Also if my long directory is…
Kerdany
  • 1
  • 1
-1
votes
1 answer

Pid and Lock files are not created in Nginx custom build Centos 7

I am trying to install nginx from source. After make install, I had a look at /var/run/ folder but I cant find the nginx.pid file and nginx.lock files there. This is my configuration: sudo ./configure…
Neel
  • 1,421
  • 7
  • 21
  • 35
-1
votes
2 answers

Installing make with wget

How can I install make with wget on CentOS? I tried: cd /tmp wget ftp.gnu.org/pub/gnu/make/make-3.81.tar.gz tar xfz make-3.81.tar.gz cd make-3.81 PATH=/usr/local/bin:/usr/bin:/bin ./configure patch -p1
John
-1
votes
2 answers

Problem with “make & make install” software on linux

I have worked on Linux for a year. One thing bothers me is that I am not familar with the process of installing new software with source code(I can't install them from netword due to environment limitations). I was often blocked with different kinds…
bluesea007
  • 43
  • 1
  • 4
-2
votes
1 answer

CentOS 8 server: /bin/ld: cannot find -lstdc++

I get an error running make. I have never seen this error. There are no other errors except this one. I am seriously baffled. Help is appreciated.
1 2 3 4 5
6