no luck
I tried with single dir:
c++ C:\test.cpp -B C:\Test
Same story.
Contents of C:\Test.cpp
#include <iostream.h>
#include <header.h>
int main()
{
int iVar = 0;
cout << "Simple C++ Program\n" << endl;
return 0;
}
Then I tried moving the switch before the filename
c++ -B"C:\Test" C:\test.cpp
In file included from ../lib/gcc/mingw32/3.4.2/../../../../include/c++/3.4.2/bac
kward/iostream.h:31,
from C:\test.cpp:2:
../lib/gcc/mingw32/3.4.2/../../../../include/c++/3.4.2/backward/backward_warning
.h:32:2: warning: #warning This file includes at least one deprecated or antiqua
ted header. Please consider using one of the 32 headers found in section 17.4.1.
2 of the C++ standard. Examples include substituting the <X> header for the <X.h
> header for C++ includes, or <iostream> instead of the deprecated header <iostr
eam.h>. To disable this warning use -Wno-deprecated.
C:\test.cpp:3:20: header.h: No such file or directory
same story with
c++ -B "C:\Test" C:\test.cpp
This is one of the only things preventing me to release Beta 11. I must fix this before I release Beta 11.