Skip to content

Commit

Permalink
Provide libquic.a definition to VIO::VIO() (#8706)
Browse files Browse the repository at this point in the history
Building with Clang 13 resulted in an undefined sybmol for VIO::VIO().
That is provided by libinkevent.a. Providing that after libquic.a so it
can find the symbol.

This closes #8686

(cherry picked from commit bce99bf)
  • Loading branch information
bneradt authored and zwoop committed Mar 10, 2022
1 parent 1b408c7 commit 01c6721
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/traffic_server/Makefile.inc
Original file line number Diff line number Diff line change
Expand Up @@ -100,5 +100,6 @@ endif
if ENABLE_QUIC
traffic_server_traffic_server_LDADD += \
$(top_builddir)/proxy/http3/libhttp3.a \
$(top_builddir)/iocore/net/quic/libquic.a
$(top_builddir)/iocore/net/quic/libquic.a \
$(top_builddir)/iocore/eventsystem/libinkevent.a
endif

0 comments on commit 01c6721

Please sign in to comment.