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).

86 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
  • 247
  • 1
  • 2
  • 7
0
votes
0 answers

Alternative task runner to Make that lets you include arbitrary (bash) shell commands?

I am trying to add a step to a make command in a Makefile, specifically alias abc='xyz' and was shocked to find that it doesn't quite work like that. This is in a go project (learning go). Is there something like Make that can be used like a task…
yen
  • 115
  • 1
  • 3
0
votes
0 answers

Installing ONIE on Netberg Rangeley P1330 CPU board

I'm trying to build the opencomputeproject/onie bin files for netberg aurora using the instructions from here. I am getting the following error, what is wrong? [INFO ] Retrieving needed toolchain components' tarballs [ERROR] Internal ct-ng…
John Doe
  • 1
  • 1
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
  • 203
  • 1
  • 2
  • 12
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
  • 8
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,441
  • 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