$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
Subject: [boost] [test] minimal.hpp causing unresolved external with Intel on Windows
From: Beman Dawes (bdawes_at_[hidden])
Date: 2008-11-29 15:16:58
The little program below compiles and runs fine on most compilers, but with
the Intel compiler there is an unresolved external:
test.obj : error LNK2019: unresolved external symbol "void __cdecl
boost::throw_exception(class std::exception const &)"
(?throw_exception_at_boost@@YAXABVexception_at_std@@@Z) referenced in function
_main
test.exe : fatal error LNK1120: 1 unresolved externals
--Beman
#include <boost/test/minimal.hpp>
int test_main(int, char*[])
{
return 0;
}