You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by bn...@apache.org on 2022/03/01 23:40:06 UTC

[trafficserver] branch master updated: Provide libquic.a definition to VIO::VIO() (#8706)

This is an automated email from the ASF dual-hosted git repository.

bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/master by this push:
     new bce99bf  Provide libquic.a definition to VIO::VIO() (#8706)
bce99bf is described below

commit bce99bf989796a205425532c2faf432f8d91eae0
Author: Brian Neradt <br...@gmail.com>
AuthorDate: Tue Mar 1 17:39:54 2022 -0600

    Provide libquic.a definition to VIO::VIO() (#8706)
    
    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
---
 src/traffic_server/Makefile.inc | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/traffic_server/Makefile.inc b/src/traffic_server/Makefile.inc
index 1472ede..b908fea 100644
--- a/src/traffic_server/Makefile.inc
+++ b/src/traffic_server/Makefile.inc
@@ -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