What SAFESEH:NO option actually do
问题 I'm trying to use boost::asio::spawn function like in the example, but it gives me the following error in Release: libboost_context-vc120-mt-s-1_55.lib(jump_i386_ms_pe_masm.obj) : error LNK2026: module unsafe for SAFESEH image It is clear that I should set /SAFESEH:NO option in the project's settings but I can't understand what this will actually do. How this affect the behavior of exception handling in the program (both C++ exceptions and SEH)? btw I'm using MSVC-12.0. 回答1: Short answer: