$include_dir="/home/hyper-archives/boost-build/include"; include("$include_dir/msg-header.inc") ?>
From: Beman Dawes (bdawes_at_[hidden])
Date: 2002-08-08 16:48:07
The Boost.Threads regression test uses a .dll. See below.
There is no problem with the .dll for the other Win32 compilers, but for
intel-win32 when it comes time to run the test, the .dll is not being
found.
The .dll is being built OK, and if I move it to a place in the path, the
intel-win32 test runs without problems.
The other compilers find the .dll without any intervention on my part.
Since not finding the .dll hangs the regression test waiting for a user
response to a dialog box, I'd really like to see this one fixed.
Any ideas?
If I haven't given enough information to fix it, please let me know what
else would help. You can see the thread library Jamfile in the CVS at
.../libs/thread/build. It also uses threads.jam at the same location.
TIA,
--Beman
{
local threadmon ;
if $(NT)
{
threadmon = <dll>../libs/thread/build/boost_threadmon ;
}
test-suite threads
: [
run libs/thread/test/test_thread.cpp
<lib>../libs/thread/build/boost_thread
$(threadmon)
: #args
: #input-files
: #requirements
<threading>multi
]
;
}