From desmoulins.uchi at googlemail.com Fri Sep 1 06:50:06 2017 From: desmoulins.uchi at googlemail.com (Niran) Date: Fri, 1 Sep 2017 15:50:06 +0200 Subject: [opensource-dev] Windows 64bit compiling error. Message-ID: So after the painstaking process of going through the very lacking wiki guide, getting everything set up, fixing all the issues and getting the Alex Ivy repository successfully build, i'm now in the process of switching my own Viewer (Black Dragon) to Alex Ivy base, after a few more problems i could luckily solve (such as the 100% missing guide on how to build FmodEx) i'm now at a successful configure, starting the viewer VS project file and getting fatal errors basically as soon as the first file start to compile. 6>f:\blackdragon64\indra\llcommon\llapp.h(307): error C2061: syntax error : identifier 'siginfo_t' (F:\BlackDragon64\indra\llcommon\llapp.cpp) 6>f:\blackdragon64\indra\llcommon\llmemory.h(93): fatal error C1189: #error : "LL_ALIGN_PREFIX and LL_ALIGN_POSTFIX undefined" (F:\BlackDragon64\indra\llcommon\llapp.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(142): error C2146: syntax error : missing ';' before identifier 'DERIVED_TYPE' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6> f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(143) : see reference to class template instantiation 'LLThreadLocalSingletonPointer' being compiled 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(142): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2146: syntax error : missing ';' before identifier 'DERIVED_TYPE' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2143: syntax error : missing ';' before '*' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2065: 'DERIVED_TYPE' : undeclared identifier (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2923: 'LLThreadLocalSingletonPointer' : 'DERIVED_TYPE' is not a valid template type argument for parameter 'DERIVED_TYPE' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): fatal error C1903: unable to recover from previous error(s); stopping compilation (F:\BlackDragon64\indra\llcommon\llapr.cpp) The error list goes on and on and on, every second file errors out, every project fatally fails compiling from what i assume is a problem with the compile not knowing i'm trying to compile for Windows. From the llmemory.h file i can see that the error should only ever happen if neither Mac/Linux nor Windows are specified to be used. #if LL_LINUX || LL_DARWIN #define LL_ALIGN_PREFIX(x) #define LL_ALIGN_POSTFIX(x) __attribute__((aligned(x))) #elif LL_WINDOWS #define LL_ALIGN_PREFIX(x) __declspec(align(x)) #define LL_ALIGN_POSTFIX(x) #else #error "LL_ALIGN_PREFIX and LL_ALIGN_POSTFIX undefined" #endif This is the specific snipped i'm talking about. However, that brings up the question, why does this happen, where and how can i fix it, i hg checked against the successful Alex Ivy build, every single file of importance, all cmake files and so on, they all seem fine and basically exactly the same except the name of the Viewer. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20170901/b5c3ece6/attachment.htm From cinder at alchemyviewer.org Fri Sep 1 09:08:34 2017 From: cinder at alchemyviewer.org (Cinder Roxley) Date: Fri, 1 Sep 2017 09:08:34 -0700 Subject: [opensource-dev] Windows 64bit compiling error. In-Reply-To: References: Message-ID: Would need more context about what you changed in your viewer. If I have time, I?ll pull later and see if I can?t figure out what went awry in CMake. On September 1, 2017 at 8:50:12 AM, Niran (desmoulins.uchi at googlemail.com) wrote: So after the painstaking process of going through the very lacking wiki guide, getting everything set up, fixing all the issues and getting the Alex Ivy repository successfully build, i'm now in the process of switching my own Viewer (Black Dragon) to Alex Ivy base, after a few more problems i could luckily solve (such as the 100% missing guide on how to build FmodEx) i'm now at a successful configure, starting the viewer VS project file and getting fatal errors basically as soon as the first file start to compile. 6>f:\blackdragon64\indra\llcommon\llapp.h(307): error C2061: syntax error : identifier 'siginfo_t' (F:\BlackDragon64\indra\llcommon\llapp.cpp) 6>f:\blackdragon64\indra\llcommon\llmemory.h(93): fatal error C1189: #error : "LL_ALIGN_PREFIX and LL_ALIGN_POSTFIX undefined" (F:\BlackDragon64\indra\llcommon\llapp.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(142): error C2146: syntax error : missing ';' before identifier 'DERIVED_TYPE' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6> f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(143) : see reference to class template instantiation 'LLThreadLocalSingletonPointer' being compiled 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(142): error C4430: missing type specifier - int assumed. Note: C++ does not support default-int (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2146: syntax error : missing ';' before identifier 'DERIVED_TYPE' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2143: syntax error : missing ';' before '*' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2065: 'DERIVED_TYPE' : undeclared identifier (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): error C2923: 'LLThreadLocalSingletonPointer' : 'DERIVED_TYPE' is not a valid template type argument for parameter 'DERIVED_TYPE' (F:\BlackDragon64\indra\llcommon\llapr.cpp) 6>f:\blackdragon64\indra\llcommon\llthreadlocalstorage.h(146): fatal error C1903: unable to recover from previous error(s); stopping compilation (F:\BlackDragon64\indra\llcommon\llapr.cpp) The error list goes on and on and on, every second file errors out, every project fatally fails compiling from what i assume is a problem with the compile not knowing i'm trying to compile for Windows. From the llmemory.h file i can see that the error should only ever happen if neither Mac/Linux nor Windows are specified to be used. #if LL_LINUX || LL_DARWIN #define LL_ALIGN_PREFIX(x) #define LL_ALIGN_POSTFIX(x) __attribute__((aligned(x))) #elif LL_WINDOWS #define LL_ALIGN_PREFIX(x) __declspec(align(x)) #define LL_ALIGN_POSTFIX(x) #else #error "LL_ALIGN_PREFIX and LL_ALIGN_POSTFIX undefined" #endif This is the specific snipped i'm talking about. However, that brings up the question, why does this happen, where and how can i fix it, i hg checked against the successful Alex Ivy build, every single file of importance, all cmake files and so on, they all seem fine and basically exactly the same except the name of the Viewer. _______________________________________________ Policies and (un)subscribe information available here: http://wiki.secondlife.com/wiki/OpenSource-Dev Please read the policies before posting to keep unmoderated posting privileges -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20170901/0a3749fe/attachment.htm From sldev at free.fr Fri Sep 1 10:01:43 2017 From: sldev at free.fr (Henri Beauchamp) Date: Fri, 1 Sep 2017 19:01:43 +0200 Subject: [opensource-dev] Windows 64bit compiling error. In-Reply-To: References: Message-ID: <20170901190143.9630b2c25e23b9376223b930@free.fr> On Fri, 1 Sep 2017 15:50:06 +0200, Niran wrote: i'm now at a successful configure, starting the viewer VS project file and > getting fatal errors basically as soon as the first file start to compile. > > 6>f:\blackdragon64\indra\llcommon\llapp.h(307): error C2061: syntax error : > identifier 'siginfo_t' (F:\BlackDragon64\indra\llcommon\llapp.cpp) > 6>f:\blackdragon64\indra\llcommon\llmemory.h(93): fatal error C1189: #error > : "LL_ALIGN_PREFIX and LL_ALIGN_POSTFIX undefined" >.../... > The error list goes on and on and on, every second file errors out, every > project fatally fails compiling from what i assume is a problem with the > compile not knowing i'm trying to compile for Windows. From the llmemory.h > file i can see that the error should only ever happen if neither Mac/Linux > nor Windows are specified to be used. > > #if LL_LINUX || LL_DARWIN > > #define LL_ALIGN_PREFIX(x) > #define LL_ALIGN_POSTFIX(x) __attribute__((aligned(x))) > > #elif LL_WINDOWS > > #define LL_ALIGN_PREFIX(x) __declspec(align(x)) > #define LL_ALIGN_POSTFIX(x) > > #else > #error "LL_ALIGN_PREFIX and LL_ALIGN_POSTFIX undefined" > #endif > > This is the specific snipped i'm talking about. However, that brings up the > question, why does this happen, where and how can i fix it, i hg checked > against the successful Alex Ivy build, every single file of importance, all > cmake files and so on, they all seem fine and basically exactly the same > except the name of the Viewer. Obviously, LL_WINDOWS is not defined. It is normally set in the indra/cmake/00-Common.cmake file and indeed, it's missing in Alex Ivy's. Between line 79 and 80, under "add_definitions(", simply insert: /DLL_WINDOWS=1 Note that LL_LINUX and LL_DARWIN defines are equally missing from Alex Ivy's indra/cmake/00-Common.cmake file... Maybe they are passed in the command line now ? Henri. From sldev at free.fr Tue Sep 5 01:35:33 2017 From: sldev at free.fr (Henri Beauchamp) Date: Tue, 5 Sep 2017 10:35:33 +0200 Subject: [opensource-dev] Animated mesh (Axon viewer branch) Message-ID: <20170905103533.d62200df040daf6185d40c25@free.fr> Greetings, I was wondering if there was any sim, on Aditi, where I could give a test for the Axon viewer branch code (animated mesh). I searched for a sim with it enabled, but failed to find one so far... Regards, Henri. From vir at lindenlab.com Tue Sep 5 06:10:56 2017 From: vir at lindenlab.com (Brad Payne (Vir Linden)) Date: Tue, 5 Sep 2017 09:10:56 -0400 Subject: [opensource-dev] Animated mesh (Axon viewer branch) In-Reply-To: <20170905103533.d62200df040daf6185d40c25@free.fr> References: <20170905103533.d62200df040daf6185d40c25@free.fr> Message-ID: The axon viewer branch is for the work underway on animated object ("animesh") support. Currently this is not quite ready for public testing, and there are no public regions that support it. When the work is a bit farther along, we will release a project viewer, and set up some public testing regions on Aditi. We will let everyone know where and how they can help test this when that viewer is released. On Tue, Sep 5, 2017 at 4:35 AM, Henri Beauchamp wrote: > Greetings, > > I was wondering if there was any sim, on Aditi, where I could give a test > for > the Axon viewer branch code (animated mesh). I searched for a sim with it > enabled, but failed to find one so far... > > Regards, > > Henri. > _______________________________________________ > Policies and (un)subscribe information available here: > http://wiki.secondlife.com/wiki/OpenSource-Dev > Please read the policies before posting to keep unmoderated posting > privileges > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20170905/09b33f2b/attachment.htm From desmoulins.uchi at googlemail.com Thu Sep 28 06:47:02 2017 From: desmoulins.uchi at googlemail.com (Niran) Date: Thu, 28 Sep 2017 15:47:02 +0200 Subject: [opensource-dev] Viewer Manager (Launcher) and AntiVirus Message-ID: Avira (and presumably all others) goes nuts on vmp_util.exe whenever it appears anywhere, worse, when i configure the viewer and it downloads and extracts the viewer manager package it immediately flags it as potentially dangerous in such a way that said file becomes completely phased, i cannot remove it, move it or otherwise interact with it and the configuration fails with "permission denied" until i restart the PC. I wonder what i can do about it, the moment i'm going to pack this thing into the Viewer package and offer a download people will chop my head off that its infected with Viruses. I know AntiVirus applications are shit but i'm worried about this happening not just to me but to basically every single user, this would be absolutely horrible. -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20170928/5b35eb7b/attachment.htm From cinder at alchemyviewer.org Thu Sep 28 06:57:56 2017 From: cinder at alchemyviewer.org (Cinder Roxley) Date: Thu, 28 Sep 2017 08:57:56 -0500 Subject: [opensource-dev] Viewer Manager (Launcher) and AntiVirus In-Reply-To: References: Message-ID: Submit a sample to Avira so they?ll whitelist it. https://analysis.avira.com/en/submit Bitdefender and Kaspersky don?t detect it as a virus (and Bitdefender thinks git is malicious, so there you go.) Further, code signing is your friend. Signed bins are much less likely to be flagged as malicious by crappy free antivirus suites. On September 28, 2017 at 8:47:06 AM, Niran (desmoulins.uchi at googlemail.com) wrote: Avira (and presumably all others) goes nuts on vmp_util.exe whenever it appears anywhere, worse, when i configure the viewer and it downloads and extracts the viewer manager package it immediately flags it as potentially dangerous in such a way that said file becomes completely phased, i cannot remove it, move it or otherwise interact with it and the configuration fails with "permission denied" until i restart the PC. I wonder what i can do about it, the moment i'm going to pack this thing into the Viewer package and offer a download people will chop my head off that its infected with Viruses. I know AntiVirus applications are shit but i'm worried about this happening not just to me but to basically every single user, this would be absolutely horrible. _______________________________________________ Policies and (un)subscribe information available here: http://wiki.secondlife.com/wiki/OpenSource-Dev Please read the policies before posting to keep unmoderated posting privileges -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20170928/d3054272/attachment.htm From nickyperian at gmail.com Thu Sep 28 10:22:18 2017 From: nickyperian at gmail.com (Nicky Perian) Date: Thu, 28 Sep 2017 12:22:18 -0500 Subject: [opensource-dev] Viewer Manager (Launcher) and AntiVirus In-Reply-To: References: Message-ID: Sounds similar to what I reported here: https://jira.secondlife.com/browse/BUG-134328 I haven't been able to make it fail since. On Thu, Sep 28, 2017 at 8:47 AM, Niran wrote: > Avira (and presumably all others) goes nuts on vmp_util.exe whenever it > appears anywhere, worse, when i configure the viewer and it downloads and > extracts the viewer manager package it immediately flags it as potentially > dangerous in such a way that said file becomes completely phased, i cannot > remove it, move it or otherwise interact with it and the configuration > fails with "permission denied" until i restart the PC. I wonder what i can > do about it, the moment i'm going to pack this thing into the Viewer > package and offer a download people will chop my head off that its infected > with Viruses. > > I know AntiVirus applications are shit but i'm worried about this > happening not just to me but to basically every single user, this would be > absolutely horrible. > > _______________________________________________ > Policies and (un)subscribe information available here: > http://wiki.secondlife.com/wiki/OpenSource-Dev > Please read the policies before posting to keep unmoderated posting > privileges > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20170928/475a108b/attachment.htm From oz at lindenlab.com Fri Sep 29 08:54:13 2017 From: oz at lindenlab.com (Oz Linden (Scott Lawrence)) Date: Fri, 29 Sep 2017 11:54:13 -0400 Subject: [opensource-dev] new autobuild 1.1 Message-ID: <315e0ec7-46a9-b7dc-837b-bf3850622d48@lindenlab.com> We've done a couple of minor fixes to autobuild 1.1 recently. You can update to version 1.1.7 with 'pip'. -- OZ LINDEN | Engineering Director, Second Life email or hangouts: oz at lindenlab.com | Real Life: Scott Lawrence LINDEN LAB | Create Virtual Experiences -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.secondlife.com/pipermail/opensource-dev/attachments/20170929/6ea3ff82/attachment.htm