J'ai 4 fichiers .c hello.c
, here.c
, bye.c
et main.c
. Un fichier d'en-tête mylib.h
Dépendance récursive trouvée dans un fichier Make pour créer une bibliothèque statique
Le contenu sont les suivants
hello.c
#include<stdio.h>
void hello()
{
printf("Hello!\n");
}
here.c
#include<stdio.h>
void here()
{
printf("I am here \n");
}
bye.c
#include<stdio.h>
void bye()
{
printf("Bye,Bye");
}
main.c
#include<stdio.h>
#include "mylib.h"
int main()
{
hello();
here();
bye();
return 1;
}
malib.h
#ifndef _mylib_
#define _mylib_
void hello();
void here();
void bye();
#endif
Le makefile pour la création d'une lib statique est: Makefile
all: myapp
#Macros
#Which Compiler
CC = g++
#Where to install
INSTDIR = /usr/local/bin
#Where are include files kept
INCLUDE = .
#Options for developement
CFLAGS = -g -Wall -ansi
#Options for release
#CFLAGS = -O -Wall -ansi
#Local Libraries
MYLIB = mylib.a
myapp: main.o $(MYLIB)
$(CC) -o myapp main.o $(MYLIB)
$(MYLIB): $(MYLIB)(hello.o) $(MYLIB)(here.o) $(MYLIB)(bye.o)
main.o: main.c mylib.h
hello.o: hello.c
here.o: here.c
bye.o: bye.c
clean:
-rm main.o hello.o here.o bye.o $(MYLIB)
install: myapp
@if [ -d $(INSTDIR) ]; \
then \
cp myapp $(INSTDIR);\
chmod a+x $(INSTDIR)/myapp;\
chmod og-w $(INSTDIR)/myapp;\
echo "Installed in $(INSTDIR)";\
else \
echo "Sorry, $(INSTDIR) does not exist";\
fi
Problème: Quand j'exécutez la commande
make -f Makefile all
Je reçois l'erreur dependecy suivante:
make: Circular mylib.a <- mylib.a dependency dropped.
ar rv (hello.o) hello.o
/bin/sh: -c: line 0: syntax error near unexpected token `('
/bin/sh: -c: line 0: `ar rv (hello.o) hello.o'
make: *** [(hello.o)] Error 2
Questions: How do I resolve this? Which command is causing the cyclic dependency?
Soit dit en passant, en utilisant '' g ++ est un compilateur pour un programme 'C' est un surpuissant. Il liera votre binaire/bibliothèque avec l'exécution C++ standard ('libstdC++'), dont vous n'avez pas besoin dans 'C'. Remplacer 'CC = g ++' par 'CC = gcc' devrait corriger cela. –
Changé pour gcc - le problème persiste –