Opened 8 years ago
#11030 new Bugs
Building boost with MSVC, MASM and SAFESEH
Reported by: | Tobias Loew | Owned by: | |
---|---|---|---|
Milestone: | To Be Determined | Component: | Building Boost |
Version: | Boost 1.57.0 | Severity: | Problem |
Keywords: | Cc: |
Description
Hi,
in
http://boost.2283326.n4.nabble.com/context-msvc-SAFESEH-td4652245.html
there was a discussion about the "safeseh" option for MASM (assembler-compuiler for MSVC).
I had troubles linking the MASM output with other SAFESEH libraries. In version 1.56 I could solve the problem by adding /safeseh in boost_1_56_0\libs\context\build\Jamfile.v2 as supposed:
actions masm {
ml /safeseh /c /Fo"$(<)" "$(>)"
}
and -safeseh in boost_1_56_0\tools\build\src\tools\msvc.jam, line 952:
local default-assembler-i386 = "ml -coff -safeseh" ;
It would be great if someone could add a build-option to specify safeseh for the assembler-compiler.
Tobias