Tagged Questions
6
votes
2answers
3k views
compile with -fPIC option but the option it is already in the makefile
Hello I get this error whem I am trying to do the make:
relocation R_X86_64_32 against `vtable for Torch::MemoryDataSet' can not be used when making a shared object; recompile with -fPIC
It says ...
4
votes
2answers
159 views
How do I make Makefile to recompile only changed files?
I have been struggling a bit to get make to compile only the files that have been edited. However I didn't have much success and all the files get recompiled. Can someone explain me why?
My files ...
2
votes
3answers
82 views
'make' does not recompile when source file has been edited
I'm writing a little implementation of Conway's Game of Life in C. The source code is split in three files: main.c and functions.c/functions.h, where I put my functions definitions and declarations.
...
0
votes
2answers
60 views
Why would a makefile recompile a class every time?
Here's my makefile
all: main.o fileparam.o
g++ -g $(LIBPATH) $(LIBS) file_parameters.o main.o -o test
main.o: main.cpp
g++ -g -Wall $(INCPATH) main.cpp -c
fileparam.o: ...
0
votes
2answers
45 views
Make install causes recompiles
I am writing a master makefile to compile and install multiple autoconf based libraries, which depend on each other. All works well for the first go. The issue is: if I am working on one of these ...