<div dir="ltr">Clang currently doesn't support exceptions on Windows.  What's happening is that it's trying to generate code for them, and failing when attempting to build RTTI data for the catch clauses.  We need to improve the diagnostic experience here.<div>
<br></div><div>As a workaround, if you aren't using exceptions in your program, you can pass -D_HAS_EXCEPTIONS=0 to disable use of exceptions in the Visual C++ STL headers.  cl doesn't have a flag to disable exceptions, and so we never added one to clang-cl.</div>
<div><br></div><div>---</div><div><br></div><div>I don't understand your second problem, I'd need a more reduced test case.</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, May 4, 2014 at 6:26 AM, Kim <span dir="ltr"><<a href="mailto:soldoutseashell@gmail.com" target="_blank">soldoutseashell@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi guys,<br>
<br>
I have a couple of problems while trying to compile my program using Clang-cl. First issue, even passing /GR- and Xclang -fno-rtti I get:<br>
<br>
                        ^<br>
error: cannot mangle RTTI descriptors for type 'bad_cast' yet<br>
error: cannot mangle the name of type 'bad_cast' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'exception' yet<br>
error: cannot mangle the name of type 'exception' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'bad_cast' yet<br>
error: cannot mangle the name of type 'bad_cast' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'exception' yet<br>
error: cannot mangle the name of type 'exception' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'bad_cast' yet<br>
error: cannot mangle the name of type 'bad_cast' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'exception' yet<br>
error: cannot mangle the name of type 'exception' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'bad_cast' yet<br>
error: cannot mangle the name of type 'bad_cast' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'exception' yet<br>
error: cannot mangle the name of type 'exception' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'bad_cast' yet<br>
error: cannot mangle the name of type 'bad_cast' into RTTI descriptors yet<br>
error: cannot mangle RTTI descriptors for type 'exception' yet<br>
fatal error: too many errors emitted, stopping now [-ferror-limit=]<br>
2 warnings and 20 errors generated.<br>
<br>
And I can't find a switch for disabling exceptions.<br>
<br>
<br>
<br>
<br>
Second problem (I think I've encountered this before and fixed it with -fno-delayed-template-parsing, however it doesn't seem to work on clang-cl or the argument has since been removed from clang)<br>
<br>
<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem.hpp:16:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem/path.hpp:25:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem/path_traits.hpp:22:<br>
In file included from I:\boost_1_55_0\boost/type_<u></u>traits/decay.hpp:18:<br>
In file included from I:\boost_1_55_0\boost/mpl/<u></u>eval_if.hpp:17:<br>
I:\boost_1_55_0\boost/mpl/if.<u></u>hpp(131,1) :  error: pasting formed 'BOOST_PP_TUPLE_ELEM_E_2(', an invalid preprocessing token [-Winvalid-token-paste]<br>
BOOST_MPL_AUX_NA_SPEC(3, if_)<br>
^<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(161,40) :  note: expanded from macro 'BOOST_MPL_AUX_NA_SPEC'<br>
#define BOOST_MPL_AUX_NA_SPEC(i, name) \<br>
                                       ^<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(154,47) :  note: expanded from macro '\<br>
BOOST_MPL_AUX_NA_SPEC_NO_ETI'<br>
#define BOOST_MPL_AUX_NA_SPEC_NO_ETI(<u></u>i, name) \<br>
                                              ^<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(65,9) :  note: expanded from macro '\<br>
BOOST_MPL_AUX_NA_SPEC_MAIN'<br>
        BOOST_MPL_PP_NESTED_DEF_<u></u>PARAMS_TAIL(i, typename T, na) \<br>
        ^<br>
note: (skipping 5 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)<br>
I:\boost_1_55_0\boost/<u></u>preprocessor/tuple/elem.hpp(<u></u>36,114) :  note: expanded from macro 'BOOST_PP_TUPLE_ELEM'<br>
#        define BOOST_PP_TUPLE_ELEM(size, n, tuple) BOOST_PP_TUPLE_ELEM_I(BOOST_<u></u>PP_CAT(BOOST_PP_TUPLE_ELEM_, n), BOOST_PP_CAT(BOOST_PP_CAT(<u></u>BOOST_PP_TUPLE_ELEM_E_, size), tuple))<br>
^<br>
I:\boost_1_55_0\boost/<u></u>preprocessor/cat.hpp(22,32) :  note: expanded from macro 'BOOST_PP_CAT'<br>
#    define BOOST_PP_CAT(a, b) BOOST_PP_CAT_I(a, b)<br>
                               ^<br>
I:\boost_1_55_0\boost/<u></u>preprocessor/cat.hpp(31,55) :  note: expanded from macro 'BOOST_PP_CAT_I'<br>
#    define BOOST_PP_CAT_I(a, b) BOOST_PP_CAT_II(~, a ## b)<br>
                                                      ^<br>
In file included from C:\Scripta\libs\Root\<u></u>ScriptaConfig.cpp:1:<br>
In file included from C:\Scripta\libs\Root/<u></u>ScriptaConfig.h:2:<br>
In file included from C:\Scripta\libs\Root/<u></u>ScriptaLogManager.h:38:<br>
In file included from C:\Scripta\libs\Root/Utility.<u></u>h:4:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem.hpp:16:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem/path.hpp:25:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem/path_traits.hpp:22:<br>
In file included from I:\boost_1_55_0\boost/type_<u></u>traits/decay.hpp:18:<br>
In file included from I:\boost_1_55_0\boost/mpl/<u></u>eval_if.hpp:17:<br>
I:\boost_1_55_0\boost/mpl/if.<u></u>hpp(131,1) :  error: pasting formed 'BOOST_PP_TUPLE_ELEM_1(', an invalid preprocessing token [-Winvalid-token-paste]<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(161,40) :  note: expanded from macro 'BOOST_MPL_AUX_NA_SPEC'<br>
#define BOOST_MPL_AUX_NA_SPEC(i, name) \<br>
                                       ^<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(154,47) :  note: expanded from macro '\<br>
BOOST_MPL_AUX_NA_SPEC_NO_ETI'<br>
#define BOOST_MPL_AUX_NA_SPEC_NO_ETI(<u></u>i, name) \<br>
                                              ^<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(65,9) :  note: expanded from macro '\<br>
BOOST_MPL_AUX_NA_SPEC_MAIN'<br>
        BOOST_MPL_PP_NESTED_DEF_<u></u>PARAMS_TAIL(i, typename T, na) \<br>
        ^<br>
note: (skipping 5 expansions in backtrace; use -fmacro-backtrace-limit=0 to see all)<br>
I:\boost_1_55_0\boost/<u></u>preprocessor/tuple/elem.hpp(<u></u>36,53) :  note: expanded from macro 'BOOST_PP_TUPLE_ELEM'<br>
#        define BOOST_PP_TUPLE_ELEM(size, n, tuple) BOOST_PP_TUPLE_ELEM_I(BOOST_<u></u>PP_CAT(BOOST_PP_TUPLE_ELEM_, n), BOOST_PP_CAT(BOOST_PP_CAT(<u></u>BOOST_PP_TUPLE_ELEM_E_, size), tuple))<br>
                                                    ^<br>
I:\boost_1_55_0\boost/<u></u>preprocessor/tuple/elem.hpp(<u></u>37,48) :  note: expanded from macro 'BOOST_PP_TUPLE_ELEM_I'<br>
#        define BOOST_PP_TUPLE_ELEM_I(m, args) BOOST_PP_TUPLE_ELEM_II(m, args)<br>
                                               ^<br>
I:\boost_1_55_0\boost/<u></u>preprocessor/tuple/elem.hpp(<u></u>38,64) :  note: expanded from macro 'BOOST_PP_TUPLE_ELEM_II'<br>
#        define BOOST_PP_TUPLE_ELEM_II(m, args) BOOST_PP_CAT(m ## args,)<br>
                                                               ^<br>
In file included from C:\Scripta\libs\Root\<u></u>ScriptaConfig.cpp:1:<br>
In file included from C:\Scripta\libs\Root/<u></u>ScriptaConfig.h:2:<br>
In file included from C:\Scripta\libs\Root/<u></u>ScriptaLogManager.h:38:<br>
In file included from C:\Scripta\libs\Root/Utility.<u></u>h:4:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem.hpp:16:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem/path.hpp:25:<br>
In file included from I:\boost_1_55_0\boost/<u></u>filesystem/path_traits.hpp:22:<br>
In file included from I:\boost_1_55_0\boost/type_<u></u>traits/decay.hpp:18:<br>
In file included from I:\boost_1_55_0\boost/mpl/<u></u>eval_if.hpp:17:<br>
I:\boost_1_55_0\boost/mpl/if.<u></u>hpp(131,1) :  error: pasting formed 'BOOST_PP_TUPLE_ELEM_E_2(', an invalid preprocessing token [-Winvalid-token-paste]<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(161,40) :  note: expanded from macro 'BOOST_MPL_AUX_NA_SPEC'<br>
#define BOOST_MPL_AUX_NA_SPEC(i, name) \<br>
                                       ^<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(154,47) :  note: expanded from macro '\<br>
BOOST_MPL_AUX_NA_SPEC_NO_ETI'<br>
#define BOOST_MPL_AUX_NA_SPEC_NO_ETI(<u></u>i, name) \<br>
                                              ^<br>
I:\boost_1_55_0\boost/mpl/aux_<u></u>/na_spec.hpp(65,9) :  note: expanded from macro '\<br>
BOOST_MPL_AUX_NA_SPEC_MAIN'<br>
        BOOST_MPL_PP_NESTED_DEF_<u></u>PARAMS_TAIL(i, typename T, na) \<br>
        ^<br>
<br>
...and so on...<br>
<br>
<br>
Thanks a lot for your time.<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
______________________________<u></u>_________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu" target="_blank">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/<u></u>mailman/listinfo/cfe-dev</a><br>
</blockquote></div><br></div>