I want to make a static library and was able to make one properly by following the yolinux tutorial http://www.yolinux.com/TUTORIALS/LibraryArchives-StaticAndDynamic.html
The issue arises when i want to include a static library to make a new static library. Scenario is:
gcc -Wall -c cdbSearch.c
ar -cvq cdbSrc.a cdbSearch.o cdb.a
this successfully creates a static library named cdbSrc.a
but when I try to link this with my test program
gcc -o cdbtest cdbtest.c cdbSrc.a
cdbSrc.a(cdbSearch.o): In function `cdb_search':
cdbSearch.c:(.text+0xa2): undefined reference to `cdb_seek'
collect2: ld returned 1 exit status
it gives me an error saying that cdb_seek cant be referenced which is actually a part of cdb.a
and if I compile the test program with cdb.a it works fine but then it does not serve the purpose..
gcc -o cdbtest cdbtest.c cdbSrc.a cdb.a
and the binary is created cdbtest successfully.
is this the intended behaviour, is yes why?? and if not than what am I doing wrong..