![]() |
|
|
|
#1
|
|||
|
|||
|
Quote:
|
|
#2
|
|||
|
|||
|
Quote:
... if you want to restart with either 2002 or 2003, choose the 2003 version Kerstin |
|
#3
|
|||
|
|||
|
There are some compiler bugs not fixed in VS.2003, use Intel CPP compiler instead.
|
|
#4
|
|||
|
|||
|
Quote:
Code:
int SomeFunc( void )
{
int nSomeVal;
....
return nSomeVal;
}
void AnotherFunc( int nVal )
{
// do sth with nVal
}
void main(void)
{
AnotherFunc( SomeFunc() + 0x100 );
}
Quote:
So the best is to use MSVC++ 7.1 (2003) + Intel C++ Compiler 8.1 (as it can be integrated into MSVC++). Just noticed that executables created by Intel C++ Compiler are generally bigger than those ones created with cl (M$' compiler). But therefore it provides more otimization features (e.g. Parallelization, PGO, ...) as well as support for latest technology such as SSE3 aso... Anyways I can remember that M$ announced support for PGO in MSVS 2005. |
|
#5
|
|||
|
|||
|
I don't want to create a new Thread, as my questio is very similar with this one.
I was also avay from programming for a long time... but now come back ![]() Can you plese recomend what i can use to compile for AMD 64 under windows xp 64 beta? A lot of thanks |
|
#6
|
|||
|
|||
|
Intel CPP 8.1 is a good choise ->
http://www.intel.com/software/products/compilers/cwin/relnotes.pdf |
|
#7
|
|||
|
|||
|
Quote:
|
|
#8
|
|||
|
|||
|
To vladlp:
If you want to compile for 64-bit windows xp. The best compiler is VS2005 which support compile 64-bit project directly. VS6 and VS.net can be used also. But you should install 64-bit platform sdk and modify the project setting manual. |
![]() |
| Thread Tools | |
| Display Modes | |
|
|