Skip to content

Commit

Permalink
Tools: Added pthread library to the link of the QURT build Linux appl…
Browse files Browse the repository at this point in the history
…ication
  • Loading branch information
katzfey committed Jul 30, 2024
1 parent 1ec649a commit 71603ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Tools/ardupilotwaf/qurt.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def build(bld):
bld(
# build ap_host
source=[STUB_SO, MAIN_CPP],
rule="%s -I%s %s %s %s -o %s" % (AARCH64_CXX, STUB_INC.abspath(),
rule="%s -I%s %s %s %s -lpthread -o %s" % (AARCH64_CXX, STUB_INC.abspath(),
MAIN_CPP.abspath(), IFADDR_CPP.abspath(), STUB_SO.abspath(), AP_HOST.abspath()),
target=[AP_HOST],
group='dynamic_sources'
Expand Down

0 comments on commit 71603ee

Please sign in to comment.