thank you very much, fmk.
i get some good suggestion from your reply.
Search found 5 matches
- Tue Jan 09, 2007 4:49 pm
- Forum: Framework
- Topic: errors compiling 1.7
- Replies: 10
- Views: 17165
- Tue Jan 09, 2007 4:38 pm
- Forum: Framework
- Topic: error compiling 1.7.3 with MSVC6
- Replies: 2
- Views: 10118
now i get it!
just change the content of this file to below code, and add to my project
OpenSees/SRC/win32/VC2005errno.cpp
just change the content of this file to below code, and add to my project
OpenSees/SRC/win32/VC2005errno.cpp
Code: Select all
extern "C"
{
int __mb_cur_max;
unsigned short* _pctype;
int errno;
}
- Sat Jan 06, 2007 11:13 pm
- Forum: Framework
- Topic: error compiling 1.7.3 with MSVC6
- Replies: 2
- Views: 10118
- Sat Jan 06, 2007 11:11 pm
- Forum: Framework
- Topic: error compiling 1.7.3
- Replies: 3
- Views: 8471
- Sat Jan 06, 2007 11:00 pm
- Forum: Framework
- Topic: error compiling 1.7.3 with MSVC6
- Replies: 2
- Views: 10118
error compiling 1.7.3 with MSVC6
When i compile OpenSees with MSVC6, i find all of these projects use option: " /ML " (Single-Threaded) More details please refer to below link: http://msdn2.microsoft.com/en-us/library/2kzt1wy3(VS.71).aspx After i change all "/ML" options to " /MD " (Multithread) i stil...