POV-Ray : Newsgroups : povray.newusers : Failed to running : Re: Failed to running Server Time
19 Apr 2024 00:31:38 EDT (-0400)
  Re: Failed to running  
From: clipka
Date: 24 Jul 2017 14:39:42
Message: <59763eee@news.povray.org>
Am 24.07.2017 um 14:26 schrieb 276### [at] qqcom:
> Hello,respected experts!I am a new Chinese pov-ray user so I hope you can
> forgive my poor English and fool problem.
> Every time I try to run the povray-3.7-stable in vs2010,it will be a error:
> 
> error C3861: “_mm_nmacc_pd”(and so many founctions like that,for example
> "_mm_macc_sd","_mm_macc_pd","_mm_nmacc_sd"): can't find identifier.
> 
> I had use many ways to resolve this error,but I failed.So I want to get a right
> answer through this forum.
> 
> Thank you very much!

Please try changing the following code in `vfe/win/compilers/msvc.h`
(around line 40):

    #undef USE_AVX_FMA4_FOR_NOISE
    #if _MSC_VER >= 1600
      #define USE_AVX_FMA4_FOR_NOISE
    #endif

to:

    #undef USE_AVX_FMA4_FOR_NOISE
    #if _MSC_FULL_VER >= 160040219
      #define USE_AVX_FMA4_FOR_NOISE
    #endif


Post a reply to this message

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