Search found 271 matches

by acasta69
Fri Mar 19, 2021 6:13 pm
Forum: Development
Topic: SDK compatibility issues in VS2019 C++ project with std::string
Replies: 13
Views: 6512

Re: SDK compatibility issues in VS2019 C++ project with std::string

I think you are referring to the output of this: PropertyValue propVal = "test string"; Property prop("test1.prop1", propVal); cout << "test1.prop1[0] => " << prop.Get<string>(0) << "\n\n"; What do you get as output when the value is corrupted? I did a naive t...
by acasta69
Thu Mar 11, 2021 9:47 am
Forum: Development
Topic: OIDN new version Out
Replies: 27
Views: 14370

Re: OIDN new version Out

Martini wrote: Thu Mar 11, 2021 7:22 am Also your OpenImageIO.dll is named OpenImageIO_LuxCore.dll :?
That should be ok, we have renamed the library in Windows builds to avoid some compatibility issues for the 3dsMax plugin.
by acasta69
Sun Feb 28, 2021 1:37 pm
Forum: News
Topic: LuxCoreRender v2.5rc1
Replies: 19
Views: 25903

Re: LuxCoreRender v2.5rc1

and I think a separate branch of BlendLuxCore is needed to conform to changes - Yes, that's what I meant. Providing a python39-compatible pyluxcore.pyd is just the easy part. Indeed, I've just tried it with the latest 2.93 alpha from 25 February and it is not working, as kintuX said BlendLuxCore al...
by acasta69
Sat Feb 27, 2021 12:59 pm
Forum: News
Topic: LuxCoreRender v2.5rc1
Replies: 19
Views: 25903

Re: LuxCoreRender v2.5rc1

Usually BlendLuxCore works fine in alpha versions, but the Python update has broken compatibility. I could set up automated Windows builds for both Python versions. We already did that in the past, when Blender switched from Python 3.5 to 3.7, but alpha versions were not supported, it was when Blen...
by acasta69
Thu Feb 25, 2021 2:02 pm
Forum: Development
Topic: Windows Build FAILED
Replies: 129
Views: 69990

Re: Windows Build FAILED

Weird, I've just tried builds with 3 and 8 CPUs on my PC (16 GB) and they all succeeded. Maybe I was not using so much memory overall, even if I have some other programs open. By the way, if you don't need all samples like luxcoreconsole, luxcoreimplserializationdemo, etc., you can use: cmake-build-...
by acasta69
Thu Feb 25, 2021 12:48 pm
Forum: Development
Topic: Windows Build FAILED
Replies: 129
Views: 69990

Re: Windows Build FAILED

2) LINK : fatal error C1002: compiler is out of heap space in pass 2 Are you using the "x64 Native Tools Command Prompt for VS 2019" command prompt to run the build process? You could also try to reduce to number of parallel processes used to build. RAM usage can be very high due to LTCG,...
by acasta69
Thu Feb 11, 2021 8:42 pm
Forum: Development
Topic: Windows Build FAILED
Replies: 129
Views: 69990

Re: Windows Build FAILED

I should have fixed this, now it's working here and on Azure.
Apparently some OpenImageIO headers messed up something with boost/lexical_cast.hpp. I moved their include's after those of LuxCore headers.
by acasta69
Tue Feb 09, 2021 7:04 am
Forum: Development
Topic: Windows Build FAILED
Replies: 129
Views: 69990

Re: Windows Build FAILED

This looks like the same problem described a few posts ago by user theoharkes.
We do not have a solution at the moment, the only suggestion I can give is to use Visual Studio 2017, which has always worked without problems.
by acasta69
Sun Feb 07, 2021 8:50 pm
Forum: Development
Topic: Windows Build FAILED
Replies: 129
Views: 69990

Re: Windows Build FAILED

acasta69 wrote: Sun Feb 07, 2021 8:11 pm I am under the impression that this is caused by a recent upgrade in Visual Studio 2019.
I can confirm this: the same commit that was built without problem here and on Azure in October, when I first tried VS2019, shows now the same errors.
by acasta69
Sun Feb 07, 2021 8:11 pm
Forum: Development
Topic: Windows Build FAILED
Replies: 129
Views: 69990

Re: Windows Build FAILED

I've not been able to find a solution yet. I was thinking of some compatibility issues with Windows SDKs, but the problem persists with all those I have tried. Also googling has not helped yet: similar but different issues are found and the proposed solutions are not applicable here (and also my lit...