David Fishburn, 14.12.2008:
> If you can build ctags from source I have checked in a tex parser.
You forgot to add the newly added parsers to the objects list.
This caused the following linker error:
parse.o:(.rodata+0x0): undefined reference to `AntParser'
parse.o:(.rodata+0x28): undefined reference to `DosBatchParser'
parse.o:(.rodata+0x54): undefined reference to `MatLabParser'
parse.o:(.rodata+0x88): undefined reference to `TexParser'
collect2: ld returned 1 exit status
make: *** [ctags] Error 1
---
source.mak | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/source.mak b/source.mak
index 92e659e..0ff7382 100644
--- a/source.mak
+++ b/source.mak
@@ -70,6 +70,7 @@ REGEX_HEADERS = gnu_regex/regex.h
OBJECTS = \
args.$(OBJEXT) \
+ ant.$(OBJEXT) \
asm.$(OBJEXT) \
asp.$(OBJEXT) \
awk.$(OBJEXT) \
@@ -77,6 +78,7 @@ OBJECTS = \
beta.$(OBJEXT) \
c.$(OBJEXT) \
cobol.$(OBJEXT) \
+ dosbatch.$(OBJEXT) \
eiffel.$(OBJEXT) \
entry.$(OBJEXT) \
erlang.$(OBJEXT) \
@@ -91,6 +93,7 @@ OBJECTS = \
lua.$(OBJEXT) \
main.$(OBJEXT) \
make.$(OBJEXT) \
+ matlab.$(OBJEXT) \
options.$(OBJEXT) \
parse.$(OBJEXT) \
pascal.$(OBJEXT) \
@@ -109,6 +112,7 @@ OBJECTS = \
sql.$(OBJEXT) \
strlist.$(OBJEXT) \
tcl.$(OBJEXT) \
+ tex.$(OBJEXT) \
verilog.$(OBJEXT) \
vhdl.$(OBJEXT) \
vim.$(OBJEXT) \
--
1.6.1.rc2.34.gb7bf
--~--~---------~--~----~------------~-------~--~----~
You received this message from the "vim_use" maillist.
For more information, visit http://www.vim.org/maillist.php
-~----------~----~----~----~------~----~------~--~---