POV-Ray : Newsgroups : povray.programming : Compiling POVRAY 3.5 using VC6.0 in Release Mode : Re: Compiling POVRAY 3.5 using VC6.0 in Release Mode Server Time
6 Oct 2024 13:13:35 EDT (-0400)
  Re: Compiling POVRAY 3.5 using VC6.0 in Release Mode  
From: alphaQuad
Date: 27 Nov 2007 13:50:00
Message: <web.474c6563791be382448584b70@news.povray.org>
OIC (i think)


// Note that this section is supposed to be compiled with MinGW 3.2 with GCC
3.2.3

NOW is: 3.12 and 3.4.5 (i think 3.12 for runtime mingw??)
in both config.h files
but the line for minor version was "1" (thinking it should been 2)

MSYS-1.0.11-2004.04.30-1.exe
MSYS-1.0.11-20060807.tar.bz2
bash-3.1-MSYS-1.0.11-snapshot.tar.bz2

mingw-runtime-3.12.tar.gz
gcc-core-3.4.5-20060117-1.tar.gz
gcc-g++-3.4.5-20060117-1.tar.gz
w32api-3.9.tar.gz

should be "12" ?????????????????


#if __MINGW32_MAJOR_VERSION == 3
#define COMPILER_MAJOR_VER                             "3"
#else
#error "Adjust config.h to your compiler!"
#endif

#if __MINGW32_MINOR_VERSION == 12
#define COMPILER_MINOR_VER                             "12"
#else
#error "Adjust config.h to your compiler!"
#endif

#if  __GNUC__ == 3
#define GCC_MAJOR_VER                                  "3"
#else
#error "Adjust config.h to your compiler!"
#endif

#if __GNUC_MINOR__ == 4
#define GCC_MINOR_VER                                  "4"
#else
#error "Adjust config.h to your compiler!"
#endif

#if __GNUC_PATCHLEVEL__ == 5
#define GCC_PATCH_VER                                  "5"


Post a reply to this message

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.