0
votes
2answers
28 views

GNU Makefile dependency in multi-job make

I have a c++ project under linux. I'm using GNU make and GCC I have following rules: all: ... version: config: rm -f config.h @$(MAKE) --no-print-directory config.h config.h: # ..... create ...
1
vote
1answer
19 views

What does the '-I.' option cause in a g++ call?

In a makefile the compiler variables CXXFLAGS and CPPFLAGS are each set like this: CXXFLAGS = -I. $(shell something) Whereas the -I directory option is used to include another standard lib ...
1
vote
1answer
50 views

ldd says library isn't found by compile completes successfully

I am attempting to compile project. It compiles successfully. My make command exits with a status code of 0 and there are no errors displayed. However, the project is not working, and when I run ldd ...
-1
votes
2answers
42 views

GCC compile with mysql library

when I try to compile a self written project in C with includes the mysql libraries I get this error: gcc -c src/oDAO.c src/oDAO.c:4:23: fatal error: my_global.h: No such file or directory I ...
1
vote
2answers
53 views

Makefiles output directory

I am a bit a beginner in using makefiles and I am trying to write a makefile for gcc that accepts the inputs from two different directories (in my case they are called kernel and drivers) and output ...
0
votes
1answer
62 views

make file issue: error at every line

I try to build a library of some project. When I run it as ./MakeFile from terminal I get a bunch of errors for every line. Below is the makefile and the errors. What is wrong with it? For other ...
0
votes
1answer
42 views

compile zmq on sh4 CPU and occurs referenced by DSO error

I found if I add -shared, It will solve the make problem, but, I don't know where to modify the Makefile. I've tried LDFLAGS,CXXFLAGS in Makefile https://gist.github.com/anonymous/5453234 , it can not ...
1
vote
1answer
79 views

Explicitly linking a local shared object library

I'm working on setting up a Makefile for compiling Python wrappers for a C library. The contents of the file are below (with library names altered for infosec reasons). The line numbers are for ...
0
votes
1answer
202 views

/usr/bin/ld: cannot find -lc while compiling with makefile

Context first: I have a header (event.h), a program called event.c, and the main program main.c. This program will be compiled, generating first a object program (event.o), then a static library ...
1
vote
2answers
98 views

How to tell the compiler to use hardware floating point instructions with ARM

I am compiling a program for ARM. The makefile has a flag -msoft-float which is telling the compiler to use software floating point emulation. My question is how can I specify in the makefile to use ...
0
votes
1answer
52 views

-g option ignored when building c++ programs with “make”

Unfortunately I can't remember when this first occurred, but recently I've noticed a strange bug when I run "make" to build a program. The I have the following makefile: SOURCE = Foo.cpp \ ...
2
votes
2answers
101 views

compile headers dependencies with makefile

Iam programming UDP client server applicaion in c programming language ,so i want to make 2 sources files and 3 header files,so i decide to use make utlity . the makefile called "edit" : edit : ...
1
vote
1answer
89 views

makefile with multiple files and dependencies

I know this makefile is very trivial, but i have been reading some tutorials and examples trying to learn it and apply. Is there something wrong with what i have shown or should this be working with ...
0
votes
3answers
26 views

Make all files matching a pattern with a single target

I have multiple source files (let's call them file1.c, file2.c, etc.) that I would like compile into individual executables. Relevant part of the makefile: file%.x: file%.o $(CC) $(CFLAGS) $< ...
0
votes
1answer
74 views

how to resolve compiling error — makefile

I have modified a makefile and trying to compile a project. But it is failing in fist step only. Even i have specified pattern rule for compiling, w.r.t :-- ...
0
votes
1answer
40 views

makefile implicit rule — confused

I am working on a project where makefile is used to make an target. Here i am confused how makefile is generating .o files from the .cpp file. Like file clientthread_level1_unix.o have to be ...
1
vote
1answer
56 views

gcc makefile won't compile

My final executable (this is in unix though) will be proj07. proj07: /user/cse320/Projects/project07.driver.o proj07.support.o gcc -Wall /user/cse320/Projects/project07.driver.o proj07.support.o ...
1
vote
2answers
166 views

How to pass parameters from makefile to Linux kernel module source code

I have the source code: #include <linux/module.h> #include <linux/kernel.h> int init_module(void) { printk(KERN_INFO "Hello world %i\n", BUILD_NUMBER); return 0; } void ...
0
votes
1answer
162 views

GCC makefile dependency generation path

I use the -MM flag in GCC to generate makefile dependencies for objects. The makefile briefly looks like this: -include autodep ... $(TARGET): build $(OBJECTS) $(CC) -shared -o $@ $(OBJECTS) ...
0
votes
2answers
64 views

Conditional compiling/linking with gcc

I have a scientific simulation code that is written in c and runs from the command line. The user provides an input model as a set of c subroutines in a model.c file which are then compiled into the ...
2
votes
2answers
59 views

What invokes this pattern matching rule?

I have this Makefile which seems to be working, but I'm not sure how: EXECUTABLE=hello CC=gcc OBJS = a.o all: $(EXECUTABLE) %.o : %.c $(CC) -o $@ -c $< $(EXECUTABLE): $(OBJS) $(CC) -o ...
1
vote
1answer
125 views

Makefile Circular Dependency + No such file error

I have been trying to write a makefile for my avr gcc project using a template. This is my first time writing one (so far i've just been using the default inbuilt makefile in AVR Studio 4) When i try ...
0
votes
1answer
125 views

Makefile removes object files for no reason

Here is the Makefile code: CC=gcc CXX=g++ OBJS=OMXComponent.o Event.o hello_jpeg.o JPEG.o OMXCore.o Locker.o Logger.o BIN=hello_jpeg.bin # include ../Makefile.include CFLAGS+=-DSTANDALONE ...
1
vote
2answers
55 views

Make file - Compile and place reference into system folder

I'm developing a library in C++ and compiling the library using GCC. I'm looking for examples, or, tutorials in creating a make file. The idea will be this: The user downloads the source of the ...
0
votes
2answers
25 views

the .c file formed by compiling a Makefile within genesis 2.3 produces error

error produced = newconn_d@.c: In function ‘INFO_fac_synchan_type’: newconn_d@.c:540: error: expected ‘)’ before numeric constant make[1]: *** [newconn_d@.o] Error 1 The source code: /*including ...
0
votes
1answer
66 views

Allow space in target of GCC makefile

Is there a way to get spaces inside target names working when using make.exe? It seems to be impossible if this really ancient bug report is correct: http://savannah.gnu.org/bugs/?712 For reference, ...
0
votes
1answer
223 views

makefile error: make: *** No rule to make target `omp.h' ; with OpenMP

all, I was compiling a C program with OpenMP. It's my first time to use makefile. When excuting "make", the gcc reports the error make: * No rule to make target omp.h', needed bysmooth.o'. Stop. ...
0
votes
0answers
122 views

Building GCC 4.4.6 on Fedora 17 fails: “conflicts with new declaration with ‘C’ linkage”

I'm trying to build gcc-4.4.6 on Fedora Core 17 amd64 to use it with nvcc (CUDA SDK and Toolkit), which, unfortunately, doesn't work with gcc-4.7 distributed with Fedora. At first I hit this problem: ...
0
votes
0answers
69 views

how to unmake a makefile into gcc options?

For reasons given at Android gcc sysroot and linker, I am compiling my Android NDK project with arm-linux-gnueabi-gcc. This requires compiling the source, with the options specified in a makefile as ...
0
votes
3answers
65 views

How to strip parameters from a variable in a makefile

Below is a variable I am using in a makefile. copt = -mcpu=cortex-m3 -mthumb -g -c I want to remove -mthumb and replace it with some other option. Is there any way I can strip the option and add few ...
0
votes
0answers
379 views

undefined reference to `printf'

test.c and kernel.asm are in the folder src, Makefile is in the folder Debug, just like that: src test.c kernel.asm Debug Makefile All these files are very simple codes. But if I run ...
1
vote
1answer
119 views

using if statement in Makefile.am(automake)

I know that for Makefile we can write the following bloc ifneq ($(MYAPP_REVISION)_,_) ifneq ($(MYAPP_REVISION),exported) myapp_CFLAGS+=-DMYAPP_REVISION=\"$(MYAPP_REVISION)\" ...
0
votes
0answers
39 views

Porting the makefile to configure.ac

I have the following commands in my old Makefile MYAPP_VERSION=2.2 MYAPP_REVISION=$(shell svnversion $(PWD) -n|cut -f2 -d:) CFLAGS+=-DMYAPP_VERSION=\"$(MYAPP_VERSION)\" ...
0
votes
1answer
76 views

How to make GCC debug dumps with Makefile projects?

The title says it pretty nicely. I have a huge project that uses Makefile. How do I do a project-wide debug dumps (say, -fdump-tree-gimple) with GCC?
1
vote
1answer
79 views

How to build package with cmake?

I want to build the package uci for ubuntu. I download the source package and I found into the C files, header files and CMakeLists.txt How to build the uci project with cmake? CMakeLists.txt: ...
0
votes
3answers
254 views

Undefined Reference at Linking in Static Git Build

I'm trying to install git on a shared server (with no root access or compiler) by building it statically on my own machine (running Arch Linux) with the same processor architecture (x86_64) as the ...
0
votes
1answer
378 views

GCC error: 'for' loop initial declaration used outside C99 mode

I'm getting error: 'for' loop initial declaration used outside C99 mode when I try to compile with make. I found a wiki that says Put -std=c99 in the compilation line: gcc -std=c99 foo.c -o foo ...
0
votes
1answer
76 views

make gives “commands commence before first target”

I'm attempting to use this makefile, and entered it in as it was given, but as it is below, it threw a "missing separator" error for line 2. /usr/bin/gcc -pipe -Wall -O3 -fomit-frame-pointer ...
1
vote
1answer
183 views

ns2 mpolsr compilation error for wsn

I am trying to compile the mpolsr patched ns-2.29 in Linux Mint with gcc-4.7. I am getting the following error: trace/cmu-trace.o: In function `MPOLSR_pkt::access(Packet const*)': ...
0
votes
1answer
60 views

Newbie to makefiles. Want to understand some flags

I wanted to know what these flags mean in a makefile -rpath -soname -cvq -MD 2> and some code here
0
votes
1answer
104 views

Adding functionality to Makefile gives error :- “multiple definitoon here …”

I have been given an already working Makefile which is actually working fine. Makefile Contents can be found here in this post ... Questions about Makefile - what is "$+" & where are ...
3
votes
2answers
85 views

Questions about Makefile - what is “$+” & where are .c files/dependencies called here ?

I came across this Makefile (found it through an open source project called sendip) I have two confusions regarding this file - Where are .c files being specified as dependencies here? Although all ...
1
vote
2answers
533 views

gcc : directory : No such file or directory

I am trying to build the mali driver for linux 3.7 kernel from Here. There is a separate build script like, #!/bin/bash export KDIR=/path/to/kernel/dir/ .. .. gcc -v//Just for testing purpose ...
0
votes
2answers
64 views

How to build two elf using different compiler options in one Makefile?

Suppose I hava a make file like this. I can get normal build through make and get a debug build through make debug. But how to write a target so that I can get both normal build and debug build in one ...
1
vote
2answers
67 views

is there a way to ONLY compile POSIX API

I am developing a system that must be fully POSIX compatible I am developing this on Fedora Core 14 with gcc and c++ I do not want to use anything that is not POSIX How do I ensure I maintain this? ...
2
votes
1answer
183 views

Using assembly object files from a subdirectory

I have a small project with several .c files and one .s assembly file (crt0.s). The .c files are compiled into .o files, and are stored in the ./build subdirectory. These files compile and link ...
1
vote
0answers
226 views

/usr/lib/libpthread.so: No such file or directory && /usr/lib/libm.so: No such file or directory Solutioned

Solutioned with sudo ln -s /usr/lib64/libm.so /lib and ln -s /usr/lib64/libpthread.so /lib libm.so is in this directory: /usr/lib64/libm.so libpthread is in this dir : /usr/lib64/libpthread.so I ...
0
votes
2answers
89 views

Makefile with multiple targets and automatic dependency generation using g++ -MMD

Another question on SO describes a wonderfully elegant makefile for a single target: CXX = g++ # compiler CXXFLAGS = -g -Wall -MMD # compiler flags OBJECTS = x.o y.o z.o ...
1
vote
1answer
69 views

How can I compile mixed C and C++ code?

I have a C++ class and I would like to include in C code, so I wrote a wrapper: #ifndef __PMPC_CMPC__ #define __PMPC_CMPC__ #ifdef __cplusplus extern "C" #endif void init_motor(); #ifdef ...
1
vote
2answers
172 views

Unable to link math lib using a makefile [duplicate]

Possible Duplicate: Linker errors when compiling against glib…? Okay, I know this may be a duplicate, but I can't find any other answer to my problem. I am trying to install Pintos and when ...

1 2 3 4 5