Displaying 20 results from an estimated 700 matches similar to: "[LLVMdev] Trunk build failure"
2012 Feb 28
0
[LLVMdev] [patch] atomic functions on darwin
Hi,
Some time in the last few weeks I noticed my cmake build of
svn-trunk on powerpc-darwin8 start to warn about atomics being unavailable
and thus building thread-unsafe. I just looked into it and found an easy
solution, using the atomic functions in <libkern/OSAtomic.h> in
/usr/include. The attached patch does this and also modifies the cmake
and autoconf tests to 'pass'
2007 Mar 06
1
Errors compiling flac in Visual Studio Express 2005
Hi!
I have trouble compiling the flac library using Microsofts free (yes MS
gives it away including the optimizing C++ compiler msvc8.0) Visual Studio
Express 2005.
I get the output shown below. Does anyone have a way to make flac compile in
VS 2005?
Thanks!
Ulrik
1>------ Rebuild All started: Project: replaygain_analysis_static,
Configuration: Debug Win32 ------
1>Deleting
2005 Aug 02
1
Latest tarball
The latest tarball won''t compile on Windows:
src/Functions.cpp(582) : error C2664: ''wxLogWarning'' : cannot convert
parameter 1 from ''const class wxWCharBuffer'' to ''const char *''
No user-defined-conversion operator available that can perform
this conversion, or the operator cannot be called
src/Functions.cpp(592) : error
2016 Apr 16
2
[TSAN] LLVM statistics and pass initialization trigger race detection
Hello,
I trying TSAN on Darwin on LLVM itself (sanitizing multi-threaded ThinLTO link).
However I see two main issues on my debug build:
1) Statistics: the pre/post increment is not safe, it seems to be acknowledge in the code itself:
// FIXME: This function and all those that follow carefully use an
// atomic operation to update the value safely in the presence of
// concurrent
2010 Sep 07
3
[LLVMdev] MS VS2008 build fails - X86AsmParser
Hi all,
Just tried to build from svn sources with Visual Studio 2008, mostly
OK but fails
building the X86AsmParser lib -
I see a few commits from yesterday that may have something to do with it, but no
idea what the solution is.
-David
See MSVC's beautiful and concise output below;
Compiling...
X86AsmParser.cpp
C:\dev\MSVisualStudio\VC\include\xutility(313) : error C2664: 'bool
2010 Sep 07
0
[LLVMdev] MS VS2008 build fails - X86AsmParser
On Sep 6, 2010, at 10:50 PM, David Shipman wrote:
> Hi all,
>
> Just tried to build from svn sources with Visual Studio 2008, mostly
> OK but fails
> building the X86AsmParser lib -
>
> I see a few commits from yesterday that may have something to do with it, but no
> idea what the solution is.
Wow, that's a pretty terrible diagnostic. Does r113198 help?
-Chris
2017 Nov 23
2
question about xray tls data initialization
On Wed, Nov 22, 2017 at 10:37 AM, Dean Michael Berris
<dean.berris at gmail.com> wrote:
>
> On 22 Nov 2017, at 02:32, comic fans <comicfans44 at gmail.com> wrote:
>
> with some dirty hack , I've made xray runtime 'built' on windows ,
>
>
> \o/
with more test, I've found that trampoline didn't got built for windows :/
currently cmake didn't
2012 Jan 09
4
"timeGetTimeā function in winmm.dll
Dear Forum,
I installed MetaTrader 4 with wine it is up and running everything works well, the best performers is with the new wine 1.3.
BUT if I run some EA Experts Advisors I get on two of it problems and the application crashes.
The EA`s with crashes have custom .dll (FCS300.dll) and I try to debug this errors.
Code:
0028:Ret ntdll.RtlFreeHeap() retval=00000001 ret=7d7984a2
0028:Ret
2009 Jul 02
1
[LLVMdev] [Help Needed] tblgen code get a compile error
I am working the AVR backend. It is still in the early stage. I got the
following error:[ 86%] Building CXX object
lib/Target/AVR/CMakeFiles/LLVMAVRCodeGen.dir/AVRISelDAGToDAG.cpp.obj
AVRISelDAGToDAG.cpp
C:\llvm-build\lib\Target\AVR\AVRGenDAGISel.inc(596) : error C2664:
'llvm::SDNode *llvm::SelectionDAG::SelectNodeTo(llvm::SDNode *,unsigned
int,llvm::MVT,llvm::MVT,llvm::MVT,const llvm::SDValue
2009 Apr 22
0
ActiveX error when running an application(VB6 based)
the following is the output, when I try to run the app via wine in debug
mode(sorry if I have pasted the unnecessary information/output)
# export WINEDEBUG=+relay
# wine PrjPatientInfo.exe
0009:Ret KERNEL32.CloseHandle() retval=00000001 ret=65f3b30e
0009:Call ntdll.RtlFreeHeap(00110000,00000000,00133528) ret=65f014db
0009:Ret ntdll.RtlFreeHeap() retval=00000001 ret=65f014db
0009:Call
2006 Sep 20
1
kernel32.VirtualAlloc() limitation? - "Insufficient memory to perform operation"
Hello,
capserve.exe is part of Adobe Acrobat 5's PaperCapture plugin. Runnning "wine capserve.exe" I get an
error saying "Insufficient memory to perform operation" (although all runs fine under Windows).
It seems that several calls to kernel32.VirtualAlloc(), ntdll.NtAllocateVirtualMemory() and related
functions are executed right before the error message is issued. See
2009 Apr 22
0
wine-users Digest, Vol 45, Issue 102
the following is the output, when I try to run the app via wine in debug
mode(sorry if I have pasted the unnecessary information/output)
# export WINEDEBUG=+relay
# wine PrjPatientInfo.exe
0009:Ret KERNEL32.CloseHandle() retval=00000001 ret=65f3b30e
0009:Call ntdll.RtlFreeHeap(00110000,00000000,00133528) ret=65f014db
0009:Ret ntdll.RtlFreeHeap() retval=00000001 ret=65f014db
0009:Call
2011 Mar 09
0
[LLVMdev] Unable to build latest with Visual Studio 2008
Hello,
I've been building Clang under Windows 7 and Visual Studio 2008 for a while
now, but had not touched it in a few months. Last night I wiped my build tree
to do a full rebuild with the latest version, and got the identical error as
David Shipman was seeing last September. Are others able to build under VS9
right now?
Thanks,
John
> Subject: Re: [LLVMdev] MS VS2008 build fails -
2015 Feb 24
2
[LLVMdev] Removing contention in PassRegistry accesses to speed up compiles
Hi,
We use LLVM libraries to compile C++ code and noticed slow downs when
multiple threads of a process were compiling at once. *perf *indicated that
most of the CPU time was spent in a spin lock, which was being
locked/unlocked from llvm::PassRegistry::getPassInfo().
We read the relevant LLVM code and found out that PassRegistry is a
ManagedStatic and is shared among all threads in case of a
2009 Apr 08
0
[LLVMdev] DynamicLibrary.inc compile error /w vc++2005 and windows sdk 6.1
Hello there,
I'm having a problem compiling llvm with vc++ 2005 and windows sdk6.1.
It seems that the Platform SDK supplied with vc++2005 uses PSTR for the
first param of PENUMLOADED_MODULES_CALLBACK64 typedef (dbghelp.h) and
the windows sdk 6.1 (also windows sdk 6.0a that ships with vc++2008)
uses PCSTR. The _MSC_VER macro guard for ELM_Callback(...) kinda kills
the possibility of using
2016 Aug 25
4
CFLAA
(and sys::cas_flag that STATISTIC uses is a uint32 ...)
On Thu, Aug 25, 2016 at 9:54 AM, Daniel Berlin <dberlin at dberlin.org> wrote:
> Okay, dumb question:
> Are you really getting negative numbers in the second column?
>
> 526,766 -136 mem2reg # PHI nodes inserted
>
> http://llvm.org/docs/doxygen/html/PromoteMemoryToRegister_8cpp_source.html
>
2002 Mar 08
3
How to troubleshoot network woes with Wine?
The app which I am currently trying to get to work properly (Cinema4D
network rendering client - it does work 90%, depending on how you look
at it) does some weird things, like receiving jobs from a server,
computing them, and sending the rendered scenes back to the server
(actually I don't know if it's sending them back, or if the server is
fetching them; I don't even know what the
2008 Mar 21
0
Wine release 0.9.58
This is release 0.9.58 of Wine, a free implementation of Windows on Unix.
What's new in this release (see below for details):
- The default version is now Windows XP.
- Many Richedit improvements.
- Beginning of jscript dll support.
- Shell folders now respect XDG directory configuration.
- Many translation updates.
- Lots of bug fixes.
Because of lags created by using mirrors,
2017 Nov 21
2
question about xray tls data initialization
with some dirty hack , I've made xray runtime 'built' on windows ,
but unfortunately I haven't enough knowledge about linker and the
runtime, and finally built executable didn't run. I'd like to share
my changes here , hopes somebody help me to make it run on windows.
in AsmPrinter, copy/paster xray for coff target
InstMap =
2001 Mar 13
3
problems running homesite
Hi there,
I have just installed wine (release 20010305) and it looks to work good.
I can run notepad without trouble, winecheck.pl has one bad and one critical result:
023. Checking device needed for DGA (option "UseDGA"): /dev/BAD (/dev/mem is not writable for you).
- ADVICE: Use chmod as root to fix it ("man chmod").
025. Checking availability of windows registry