Tagged Questions
0
votes
0answers
29 views
Make replacement which builds based on changed checksum
Is there some Make replacement which builds new files, not based on file timestamps, but on updated file checksum?
1
vote
4answers
119 views
A make situation! Using 3 programming languages for parts of the program. Which build tool to use? [closed]
Ok! I don't need people to ask why I'm using 3 different programming languages for a relatively simple task... (It's in the coursework specification)
My situation is, I have to write a program. This ...
2
votes
0answers
207 views
CMAKE_TOOLCHAIN_FILE was not used by the project
Cmake gives this warning when building one third-party script:
CMake Warning:
Manually-specified variables were not used by the project:
CMAKE_TOOLCHAIN_FILE
Is there any common advices what ...
0
votes
1answer
313 views
Opencv Building Error
Im trying to setup Opencv with cuda=on on ubuntu 12.04. I did cmake Opencv with all settings which I want without any problem and my Cuda toolkit is working smooth. However, when I come make step of ...
0
votes
0answers
55 views
stasm build error in windows environment
I tried building stasm in my windows machine using mingw and am getting the errors mentioned as in this link. Can any one provide me some tips on how to solve it?
And I used this make file to build. ...
1
vote
1answer
49 views
How to copy files from the package to the main codebase?
I have got a plugin package to enhance the working of our product. This package contain some additional files and some modified main code-base repository files. But we can't directly merge this ...
4
votes
1answer
163 views
How do I measure CPU, memory and disk usage during a build?
I'm trying to improve my build times and want to have some feedback in place to measure where my problems are.
I'm using GNU Make on a Linux CentOS system to build the Linux kernel along with some ...
2
votes
3answers
181 views
How to redirect the output of a utility that generates lots of separate output files?
My build process uses lots of closed-source 3rd-party utilities. These tools generate lots of files, separated into three categories: the files I want, reports, and crap. Sometimes I can choose the ...
3
votes
0answers
244 views
How to build binaries and use it in several machines in Unix?
I have source code of a compiler which I am building like this:
/path/to/srcdir/configure --prefix=/path/to/installdir
make
make install
I want to distribute the resulting 'installdir' to other ...
4
votes
1answer
2k views
cmake: How to add a add_custom_command that just executes a shellscript?
When I use the classic gnu Make I put in post build actions like flash the device (if it is a embedded device) and other similiar actions. The actual flashing is usually hidden behind a little sctipt ...
2
votes
3answers
814 views
makefile setting a variable in if statement in a target
I have a Makefile with the following:
AVAR=""
all :
if [ -d ../old ]; then \
(echo "$@ Ping!"; AVAR="../old"; echo $(AVAR)) \
fi
@echo $(AVAR)
The idea is that depending on the ...
1
vote
1answer
87 views
Generate a Makefile from source and executable?
I've got a large code base that builds fine using a old custom build system cobbled together using bunch of bash scripts and simple Makefiles recursively combined.
How can I go about recreating the ...
2
votes
0answers
272 views
Intermittent build error - cannot find header file
I am having a strange issue with a GNU Radio application I am working on. I have modified some of the processing blocks included with GNU Radio, and for some strange reason I get intermittent build ...
1
vote
3answers
926 views
Parallel Make Output
When running a CMake generated Makefile with multiple processes (make -jN), the output often gets messed up like this:
[ 8%] [ 8%] [ 9%] Building CXX object App/CMakeFiles/App.dir/src/File1.cpp.o
...
0
votes
1answer
818 views
error after building Linux source code for android
I have compiled the Linux kernel source for android. After building the source i got error,
that is, after
$ARCH=arm ...
2
votes
1answer
2k views
How can I set an Android Makefile to copy/rename files?
According to the Android online docs there's currently no way to specify multiple/mixed file extensions for the gcc compiler in an Android makefile. The source I'm using, a public project, has ...
1
vote
1answer
148 views
What alternatives to the make command are able to detect file changes on other criteria than timestamp?
What alternatives to the make command are able to detect file changes on other criteria than timestamp?
So far I have only found Rant ( http://rant.rubyforge.org/ ) which is able to detect file ...
0
votes
1answer
396 views
Specifying build dependency in parallel builds using make
This is what I have:
Test scripts under a folder that use some executables in the source tree.
Sources for the executables used above under a separate folder in the source tree.
What I want to ...
4
votes
3answers
393 views
What's an easy way to detect modified files in a Git workspace?
During make, I create string fields which I embedded in the linked output. Very useful.
Other than a complex sed/grep parsing of the git status command, how can I easily determine if files in the ...
7
votes
5answers
360 views
What do companies use to build their binaries?
What do modern companies use to compile and link their projects?
Especially with large projects, makefiles don't seem usable enough to be scalable. As far as I can tell, many companies use either ...
0
votes
2answers
166 views
Does CMake has something like % substitution support from Make?
I need a chain of file processing in my build-process. Workflow can be easily specified and built around a filename, only extension changes, like file.a -> file.b -> file.c. So, it's clearly a case ...
4
votes
3answers
457 views
Speedup GNU make build process - Parallelism?
I build a huge project frequently and this takes long time (more than one hour) to finish even after configuring pre-compiled headers. Are their any guidelines or tricks to allow make work in parallel ...
4
votes
4answers
4k views
What is a 'make target'?
Why do I need to make a make target before being able to build my source code?
More specifically, what is make target exactly?
4
votes
2answers
1k views
Eclipse CDT - Build sub directory within a project
i would like to know if there is an option in Eclipse (CDT) to build only part of project.
my situation is i got a very large single project which consist of many sub directories, and my build system ...
2
votes
5answers
90 views
What use does ./configure serve (other than checking dependencies)
Why does every source package that uses a makefile come with a ./configure script, what does it do? As far as I can tell, it actually generates the makefile?
Is there anything that can't be done in ...
5
votes
4answers
1k views
How to build a boost dependent project using regular makefiles?
I'm working on a c++ project, and we recently needed to include a small part of boost in it. The boost part is really minimal (Boost::Python), thus, using bjam to build everything looks like an ...
0
votes
3answers
400 views
Building my project with make
I'm working to improve the long languishing Linux build process for Bitfighter, and am having problems with make. My process is actually quite simple, and since make is (nearly) universal, I want to ...
5
votes
3answers
1k views
makefile with directory tree creation suitable for parallel (-j ) build
My project needs temporary directories which are created during the build using mkdir -p similarly to this:
all: dirtree $(OBJFILES)
dirtree:
@mkdir -p $(BUILD)/temp_directory
But this approach ...
7
votes
3answers
12k views
How to define compiler flags at compile time using CMake?
add_definitions adds definition that is fixed at time when cmake (not make) is executed.
How to define them when make (not cmake) is executed?
The value of the definition will be an output of a custom ...
2
votes
4answers
546 views
Can 'make' check if mtime of a dependency is *different* between runs, not just if it's newer than target?
If foo_user.cpp depends on foo.h, then foo_user.cpp is built, and then foo.h's modification time is set to further in the past, make will not rebuild foo_user.cpp (because foo.cpp is 'newer'). I'd ...
0
votes
4answers
433 views
Distributed GNU Make for Win32
Is there a version of GNU Make, or GNU Make compatible application, which supports distributed builds on Win32?
We currently have a large project using gnu makefiles. We use the Win32 version of ...
8
votes
5answers
2k views
Make (Parallel Jobs) on Windows
What setup works for GNU make parallel jobs (-j) on Windows?
I have tried setting the shell to cmd.exe using MinGW make 3.81, this works in creating the multiple processes but make fails with the ...
1
vote
1answer
417 views
What does the load-average used by parallel make represent?
Using GNU make on Windows, what exactly does the load-average value represent?
For example:
make -j --load-average=2.5
What does the 2.5 mean?
2
votes
4answers
2k views
make: hierarchical make file
(disclaimer: I am used to scons ... I am somewhat unexperienced with make)
Context: I am using Eclipse CDT which generates makefiles.
Let's say I have a project directory 'lib' and 2 build ...
0
votes
2answers
535 views
Overriding build rules in make
I'm using a Makefile to build an embedded project. I've inherited the project from numerous previous developers who haven't been using Make to its full potential, and I'd like to be able to specify ...
12
votes
11answers
2k views
What GNU make substitute do you recommend?
Imagine you're free to choose a tool like GNU make for a new C++ project. What would you choose? Are any usable substitutes out there?
It shall have/be
a command line interface
"easy" to understand ...
6
votes
3answers
6k views
Target-specific Variables as Prerequisites in a Makefile
I'm trying to write a GNU make Makefile which has a load of similar targets, where the build commands vary slightly between them.
I'm trying to use target-specific variables to represent these ...
0
votes
2answers
153 views
Win32 paths as targets/dependencies
Is it possible to have a GNU makefile with a target/dependent containing a win32 path name? I'm currently using the win32 3.81 version of GNU make, and it seems to have difficulties with drive ...
0
votes
2answers
572 views
Multiple rules specify the same phony dependent, dependent only executes once
I have a question regarding the GNU makefile example below:
.PHONY: $(subdirs) build x y
subdirs = a b c
build: x y
x: target=prepare
x: $(subdirs)
y: target=build
y: $(subdirs)
$(subdirs):
...
4
votes
2answers
444 views
Re-execute target when specified as dependency to multiple rules
I have the following GNU makefile:
.PHONY a b c d
a: b c
b: d
c: d
d:
echo HI
I would like the target 'd' to be run twice -- since it is specified as a dependency by both b & c. ...
2
votes
2answers
107 views
Strange Build Message from Linux Kernel
I was trying to rebuild my kernel after modifying some source files and noticed the following message in the build output:
II: New modules (you've been busy, wipe the poop off your nose)
What is ...
0
votes
2answers
647 views
Get the Linux Kernel make process to rebuild modified files
I'm building a custom Ubuntu kernel and have modified one of the source files. When I issue the build command:
NOEXTRAS=1 skipabi=true skipmodule=true fakeroot debian/rules binary-insp8600
it ...
19
votes
5answers
6k views
ant+cpptasks vs. scons vs. make
I'm looking into scons and I just want to make sure I know what the alternatives are, before I invest a chunk of brain cells into something completely different. I've been using GNU make in the past ...
2
votes
1answer
205 views
Knowing the files to be compiled when building a linux kernel
i would like to know if it's possible to know once a kernel is configured which files are going to be compiled and in what order ?
I want to know that because i'm interested in the variations of the ...
4
votes
4answers
2k views
Finding compiler vendor / version using qmake
Is there any way to get the version and vendor of the compiler used by the user through qmake? What I need is to disable building some targets of my project when g++ 3.x is used and enable them when ...
4
votes
3answers
1k views
Best build system for embedded development/cross-compiling
I'm doing some development right now using dsPICs and I'm not exactly in love with MPLAB. I'm actually using Visual Studio with a makefile project. Currently I'm using SCons, which seems to work ...
1
vote
2answers
339 views
Use sqlite to manage Makefile build flags
I build for more than two dozen targets from a source tree with usually three active branches with both production and debug builds. To date I've used a personal Makefile that defines the target ...
4
votes
2answers
1k views
Getting make to delete additional files on error
We're having some discussion lately about the way we handle .d files for dependencies in our make-based build process. The issue has been raised that sometimes the .d files can become corrupted when ...
32
votes
8answers
7k views
What is your experience with non-recursive make?
A few years ago, I read the Recursive Make Considered Harmful paper and implemented the idea in my own build process. Recently, I read another article with ideas about how to implement non-recursive ...
2
votes
2answers
922 views
Will the “.target-name” targets in make files always run?
I'm new to make and makefiles, so forgive me if this is very basic.
I'm looking through some makefiles in my project and I'm seeing 2 types of targets -- targets that don't begin with a . character ...


