Golevka / emacs-clang-complete-async

An emacs plugin to complete C and C++ code using libclang
360 stars 71 forks source link

compiling on os x #5

Closed jaeschliman closed 12 years ago

jaeschliman commented 12 years ago

compiling worked on os x lion after editing makefile.mk as follows:

remove these lines:

 LOADLIBES += \
    -Xlinker --start-group \
        $(addprefix  -Xlinker , $(EXTERNAL_LIBS)) \
    -Xlinker --end-group

and replace with this:

LOADLIBS += $(addprefix  -Xlinker , $(EXTERNAL_LIBS))
Golevka commented 12 years ago

Nice, this change has already been committed, it is very helpful.