<div dir="ltr"><div>The more likely explanation is that the Boost libraries you are linking with were built against libstdc++.<br>libc++ and libstdc++ are not designed to be binary-compatible, so, if your program ends up encountering one form of a class (either the libc++ or libstdc++ one) while expecting the other one, then you would experience breakage.<br><br></div><div>-- HT<br></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 15, 2017 at 4:04 PM, Simone Atzeni via llvm-dev <span dir="ltr"><<a href="mailto:llvm-dev@lists.llvm.org" target="_blank">llvm-dev@lists.llvm.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">I solved the problem, looks like the problem is libc++ , compiling with "-stdlib=libstdc++” solve the problem.<br>
<br>
Any reason why? Is libc++ missing something?<br>
<br>
Thanks.<br>
<span class="HOEnZb"><font color="#888888">Simone<br>
</font></span><div class="HOEnZb"><div class="h5"><br>
> On Feb 15, 2017, at 11:01, Simone Atzeni <<a href="mailto:simone.at@gmail.com">simone.at@gmail.com</a>> wrote:<br>
><br>
> Hi,<br>
><br>
> not sure if this is the right place, but I am experiencing a problem using clang++ (3.9.1) with Boost Filesystem.<br>
><br>
> I have this simple program:<br>
><br>
> ------------------------------<wbr>------------------------------<wbr>------------<br>
> #include <iostream><br>
> #include <boost/filesystem.hpp><br>
> using namespace boost::filesystem;<br>
><br>
> int main(int argc, char* argv[])<br>
> {<br>
> if (argc < 2)<br>
>   {<br>
>     std::cout << "Usage: tut1 path\n";<br>
>     return 1;<br>
>   }<br>
> std::cout << argv[1] << " " << file_size(argv[1]) << '\n';<br>
> return 0;<br>
> }<br>
> ------------------------------<wbr>------------------------------<wbr>------------<br>
><br>
> If I compile with g++ using "g++ -lboost_system -lboost_filesystem main.cpp” and run it I obtain the size of a file that I use as input.<br>
><br>
> If I compile with clang++ using " clang++ -std=c++11 -stdlib=libc++ -lboost_system -lboost_filesystem main.cpp” when I run the program I get the error:<br>
><br>
> "boost::filesystem::file_size: Bad address”<br>
><br>
> Any idea why?<br>
><br>
> Thanks.<br>
> Simone<br>
><br>
<br>
______________________________<wbr>_________________<br>
LLVM Developers mailing list<br>
<a href="mailto:llvm-dev@lists.llvm.org">llvm-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-dev" rel="noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/<wbr>mailman/listinfo/llvm-dev</a><br>
</div></div></blockquote></div><br></div>