Solving my own issue:  The order of linking was incorrect.<div><br></div><div>Change the Makefile as follows to solve this issue.</div><div><br></div><div><br></div><div><div>diff --git a/Makefile b/Makefile</div><div>index dec892d..90d79df 100644</div>
<div>--- a/Makefile</div><div>+++ b/Makefile</div><div>@@ -73,7 +73,7 @@ all: banner $(AST_INC_CHECK) $(AST_VER_CHECK)</div><div>        @echo &quot;&quot;</div><div> </div><div> $(NAME).so : $(NAME).o</div><div>-       $(CC) $(SOLINK) -o $@ $(LDFLAGS) $&lt;</div>
<div>+       $(CC) $(SOLINK) -o $@ $&lt; $(LDFLAGS)</div><div> </div><div> banner:</div><div>        @echo &quot;&quot;</div></div><div><br></div>