Skip to content
Snippets Groups Projects
Commit 4504ca7c authored by Jim Paris's avatar Jim Paris Committed by Gregory Nutt
Browse files

Whoops -- that #include <cxxabi.h> wasn't supposed to sneak in there. If...

Whoops -- that #include <cxxabi.h> wasn't supposed to sneak in there. If present, it may already define a __cxxabiv1::__guard that we could use, but that file comes from libstdc++, and I don't think the NuttX buildroot-based toolchain would have that, which is why we need libxx in the first place.
parent 18289e17
No related branches found
No related tags found
No related merge requests found
......@@ -546,7 +546,7 @@ static int lib_dns_lookup(FAR const char *name, FAR struct hostent *host,
ptr += addrlen;
buflen -= addrlen;
/* And copy name */
/* And copy the name */
namelen = strlen(name);
if (addrlen + namelen + 1 > buflen)
......
......@@ -38,7 +38,6 @@
//***************************************************************************
#include <nuttx/compiler.h>
#include <cxxabi.h>
//***************************************************************************
// Pre-processor Definitions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment