To make a custom version of the function igraph_get_shortest_paths_dijkstra
I made a copy of it from the file:structural_properties.c
. I've yanked it out and put it in my local .c file and one of the modifications to my Makefile is the following, but I get an error:
gcc -I/usr/local/include/igraph -I/Users/saguinag/ToolSet/igraph-0.7.1/src -I/Users/saguinag/ToolSet/igraph-0.7.1 -o mycc comp_catpath.o -L/usr/local/lib -ligraph
Undefined symbols for architecture x86_64:
"_saguinag_get_shortest_path", referenced from:
_main in comp_catpath.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make: *** [mycc] Error 1
Where my Makefile starts out as:
## Author: Sal Aguinaga (c) 2015
CC=gcc
INCLUDES=-I/usr/local/include/igraph \
-I/Users/saguinag/ToolSet/igraph-0.7.1/src \
-I/Users/saguinag/ToolSet/igraph-0.7.1
LFLAGS=-L/usr/local/lib
LIBS=-ligraph
OUT=comp_catpath
OBJS=comp_catpath.o
# define the C source files
SRCS = comp_catpath.c
OBJS = $(SRCS:.c=.o)
# define the executable file
MAIN = mycc
.PHONY: depend clean
all: $(MAIN)
@echo Simple compiler named mycc has been compiled
$(MAIN): $(OBJS)
$(CC) $(CFLAGS) $(INCLUDES) -o $(MAIN) $(OBJS) $(LFLAGS) $(LIBS)
# this is a suffix replacement rule for building .o's from .c's
# # it uses automatic variables $<: the name of the prerequisite of
# # the rule(a .c file) and $@: the name of the target of the rule (a .o file)
# # (see the gnu make manual section about automatic variables)
.c.o:
$(CC) $(CFLAGS) $(INCLUDES) -c $< -o $@
#
clean:
$(RM) *.o *~ $(MAIN)
#
depend: $(SRCS)
makedepend $(INCLUDES) $^
#
# DO NOT DELETE THIS LINE -- make depend needs it
do I need to specify the architecture? My machine is a MacBook Pro. When I type make -v
I get that it's GNU Make 3.81 with the last line saying "This program built for i386-apple-darwin11.3.0" Is there a better way to do this?
You are compiling and linking a single source file,
comp_catpath.c
. In this file, you have defined the functionmain
, and inmain
you try to call the functionsaguinag_get_shortest_path
. However, you haven't defined the functionsaguinag_get_shortest_path
incomp_catpath.c
and it's also not defined in theigraph
library or in the C standard library.If you already put the definition of
saguinag_get_shortest_path
in another.c
file, you need to include that file's name in the definition ofSRCS
in your Makefile. If you didn't definesaguinag_get_shortest_path
anywhere, you need to write a definition for it, either incomp_catpath.c
or in a new file (that you then add toSRCS
).