Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] Fail to build dlls with visual studio 2010 x64"
2016 May 16
1
FLAC Visual Studio file tidy-up?
Orestes Zoupanos wrote:
> VS2015, considering it's quite recent and the Community Edition has a
> free-to-use-for-open-source license going on.
>
>>> Yup, into win32\VS2010 and VS2015.
>>
>> VS2015 or VS2005? Currently FLAC has 2 Visual Studio solutions: one
>> for VS2005
>> (and 2008) and another for VS2010 and all newer (2012, 2013, 2015...)
2010 Sep 23
2
[LLVMdev] Visual Studio 2010 build warning & errors
here are a couple of patches to address some warnings
in Microsoft compilers, and a build error in vs2010 in particular
vs2010-errors.patch:
In SelectionDAGISel, std::pairs or pointers are being constructed using a 0
as an initializer causes an error inside the std::pair constructor. I think
changes to language in support of the nullptr keyword caused this break.
vs2010-warnings.patch:
This
2010 Sep 23
0
[LLVMdev] Visual Studio 2010 build warning & errors
On Thu, Sep 23, 2010 at 2:40 AM, Nathan Jeffords
<blunted2night at gmail.com> wrote:
> here are a couple of patches to address some warnings
> in Microsoft compilers, and a build error in vs2010 in particular
> vs2010-errors.patch:
> In SelectionDAGISel, std::pairs or pointers are being constructed using a 0
> as an initializer causes an error inside the std::pair
2010 Sep 23
4
[LLVMdev] Visual Studio 2010 build warning & errors
On Thu, Sep 23, 2010 at 4:04 AM, Michael Spencer <bigcheesegs at gmail.com>wrote:
> On Thu, Sep 23, 2010 at 2:40 AM, Nathan Jeffords
> <blunted2night at gmail.com> wrote:
> > here are a couple of patches to address some warnings
> > in Microsoft compilers, and a build error in vs2010 in particular
> > vs2010-errors.patch:
> > In SelectionDAGISel,
2010 Sep 25
0
[LLVMdev] Visual Studio 2010 build warning & errors
Note: static_cast<bool> doesn't make the warning go away or did you check
that? I just compiled a small test and it didn't work. The recommended
solution is:
(expression) != 0
http://msdn.microsoft.com/en-us/library/b6801kcy.aspx
It even says: Casting the expression to type bool will not disable the
warning, which is by design.
On Thu, Sep 23, 2010 at 9:18 AM, Nathan Jeffords
2016 May 14
2
FLAC Visual Studio file tidy-up?
Erik de Castro Lopo wrote:
>> I'm looking to maybe move all the .sln and related Visual Studio project
>> files (not the source .c and .h files!) into new directories under
>> "win32\*" within the flac reppo.
>> Any objections/tips or reasons to leave them as is?
>
> Lvqcl and other Windows devs?
>
> I'm ok with this if you are.
I don't
2014 Sep 15
2
[LLVMdev] codeview debug info in Visual Studio
Hi Carlo,
Do you have VS2010 handy? It should read the DI fine.
Unfortunately, VS2013 is not able to use the debug info we generate.
It is on my plans to investigate and fix the generator, but I didn't have
enough free cycles recently.
--
Tim
2014-09-15 20:30 GMT+04:00 Reid Kleckner <rnk at google.com>:
> +Timur
>
> Hm, this didn't work out of the box for me.
>
>
2006 Jul 26
3
memory problems when combining randomForests
Dear all,
I am trying to train a randomForest using all my control data (12,000 cases, ~
20 explanatory variables, 2 classes). Because of memory constraints, I have
split my data into 7 subsets and trained a randomForest for each, hoping that
using combine() afterwards would solve the memory issue. Unfortunately,
combine() still runs out of memory. Is there anything else I can do? (I am not
using
2013 Dec 02
0
[LLVMdev] LLVM toolchain for Visual Studio
pls read the page of http://llvm.org/builds/ :
To use the LLVM toolchain from Visual Studio, select a project in Solution Explorer, open its Property Page (Alt+F7 by default), and in the "General" section of "Configuration Properties" change "Platform Toolset" to "LLVM-vs2010" or "LLVM-vs2012".
Alternatively, invoke MSBuild with
2014 Sep 15
2
[LLVMdev] codeview debug info in Visual Studio
On Mon, Sep 15, 2014 at 10:11 AM, Carlo Kok <ck at remobjects.com> wrote:
>
> I think I have VS2010 somewhere yes. Any hints on where to find this
> problem so I can try to solve it myself?
>
Sure, llvm/lib/CodeGen/AsmPrinter/WinCodeViewLineTables.cpp
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2012 Mar 12
1
FLAC build for Visual Studio 2010?
Download the Visual Studio Ultimate Trial here:
http://www.microsoft.com/visualstudio/en-us/try
Thanks,
Michael
-----Original Message-----
From: rappard at gmail.com [mailto:rappard at gmail.com] On Behalf Of rappard at dds.nl
Sent: Monday, March 12, 2012 9:47 AM
To: Michael Scherotter
Cc: flac-dev at xiph.org
Subject: Re: [flac-dev] FLAC build for Visual Studio 2010?
I'd be happy to test
2010 Sep 25
2
[LLVMdev] Visual Studio 2010 build warning & errors
Sorry, I should have checked the change to the patch. Here is a new patch
that fixes it. I found a couple of more places with the same issue.
-Nathan
On Sat, Sep 25, 2010 at 7:53 AM, Ahmed Charles <ahmedcharles at gmail.com>wrote:
> Note: static_cast<bool> doesn't make the warning go away or did you check
> that? I just compiled a small test and it didn't work. The
2016 May 15
0
FLAC Visual Studio file tidy-up?
Yup, into win32\VS2010 and VS2015. I usually copy whatever old project
files exist and try opening them with the new VSxxxx edition. If an
upgrade is needed, I carry it out on the copied project files, leaving
the originals intact. Then proceed with testing all the configurations
and fixing any build issues.
On 14/05/2016 19:54, lvqcl wrote:
> Erik de Castro Lopo wrote:
>
>>>
2016 May 16
0
FLAC Visual Studio file tidy-up?
VS2015, considering it's quite recent and the Community Edition has a
free-to-use-for-open-source license going on.
On 16/05/2016 16:53, lvqcl wrote:
> Orestes Zoupanos wrotw:
>
>> Yup, into win32\VS2010 and VS2015.
>
> VS2015 or VS2005? Currently FLAC has 2 Visual Studio solutions: one
> for VS2005
> (and 2008) and another for VS2010 and all newer (2012, 2013,
2010 Sep 27
1
[LLVMdev] Shared Libraries (dlls) using MinGW
So I've been looking around for people who have built shared libraries on
windows and have run in to a bit of a stumbling block. I'm able to compile
without the BUILD_SHARED_LIBS flag but if I put turn the flag on as follows:
cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE:STRING=Release
-DBUILD_SHARED_LIBS:BOOL=ON ../llvm-2.7
Then call:
mingw32-make
I get:
...
Linking CXX
2012 Sep 06
2
choose() function returning anomalous results (zero instead of one)
Hello,
(Apologies for length, wanted to get all the relevant detail in that I know
of).
I've been having a lot of trouble with some code for an inventory analysis
problem I was doing, and finally came to the conclusion that it appears
that choose() is returning incorrect values. Specifically:
-------------
Browse[1]> nn
[1] 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 2 2 2 2 2 2 2 2 3 3 3 3 3 3 3
2013 Jan 09
2
[LLVMdev] Using C++'11 language features in LLVM itself
On Jan 9, 2013, at 3:03 AM, Óscar Fuentes <ofv at wanadoo.es> wrote:
> Chris Lattner <clattner at apple.com> writes:
>
>> Wow, requiring GCC 4.7 would be really aggressive, it was just
>> released in March 2012. Call me conservative, but I was thinking that
>> a reasonable GCC baseline would be GCC 4.4 or something (which is ~3.5
>> years old).
>
2010 Oct 21
1
[LLVMdev] MS VS2010 std implementation: "Cannot assign iterators to two different blocks!"
Michael,
Yes, while stepping through this VS2010 `std::swap` code, `_Move` did nothing, e.g.
////////////////////////////////////////////////////
void swap(_Ty& _Left, _Ty& _Right)
{ // exchange values stored at _Left and _Right
_Ty _Tmp = _Move(_Left);
_Left = _Move(_Right);
_Right = _Move(_Tmp);
}
////////////////////////////////////////////////////
was equivalent to:
2006 Mar 27
1
Missing Argument in optim()
Hello everybody,
i already searched the archieves, but i still don't know what is wrong
in my implementation, mybe anybody coud give me some advice
ll1<-function(rho,theta,beta1,beta2,beta3,beta4,t,Szenariosw5,Testfaellew5,X1,X2)
{
n<-length(t)
t<-cumsum(t)
tn<-t[length(t)]
Szenn<-Szenariosw5[length(Szenariosw5)]
2010 May 02
0
[LLVMdev] Compiling LLVM 2.7 with Visual Studio 2010.
Hey,
So I tried to fix these errors, and have everything compiling now... not too
difficult, just annoying.
error C2248: 'llvm::EquivalenceClasses<
>
> ElemTy>::ECValue::ECValue' : cannot access private member declared in class
> 'llvm::EquivalenceClasses<ElemTy>::ECValue' C:\Program Files
> (x86)\Microsoft Visual Studio 10.0\VC\include\xmemory 208