Skip to content
Snippets Groups Projects
Commit 0399d007 authored by Mark Spencer's avatar Mark Spencer
Browse files

Use proper compiler flag for global symbols

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1557 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent d48612ee
Branches
Tags
No related merge requests found
......@@ -203,7 +203,7 @@ stdtime/localtime.o:
fi
asterisk: editline/libedit.a db1-ast/libdb1.a stdtime/localtime.o $(OBJS)
$(CC) $(DEBUG) -o asterisk -rdynamic $(OBJS) $(LIBS) $(LIBEDIT) db1-ast/libdb1.a stdtime/localtime.o
$(CC) $(DEBUG) -o asterisk -Wl,-E $(OBJS) $(LIBS) $(LIBEDIT) db1-ast/libdb1.a stdtime/localtime.o
subdirs:
for x in $(SUBDIRS); do $(MAKE) -C $$x || exit 1 ; done
......@@ -412,6 +412,6 @@ valgrind: dont-optimize
depend: .depend
for x in $(SUBDIRS); do $(MAKE) -C $$x depend || exit 1 ; done
.depend:
.depend: build.h
./mkdep ${CFLAGS} `ls *.c`
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment