similar to: [LLVMdev] llvm-gcc linking errors

Displaying 20 results from an estimated 500 matches similar to: "[LLVMdev] llvm-gcc linking errors"

2007 Jul 14
3
Strange C programming problem
I've got this little program I wrote to test something, and it keeps giving the wrong result. I'm not inexperienced in C, but I can't believe strtof (et al) are broken, so I must be doing something wrong. However, I've spent hours looking at this and comparing it to the man pages and don't see what I'm doing wrong. strtod() and strtold() also give equally wrong results.
2005 May 12
0
Using string from stdlib in winemaker
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 How can I use std::string in my winemaker project? If I do a #include <string> along with an #include <windows.h>, I get the following errors: - --- In file included from /usr/include/c++/3.3/i486-linux/bits/c++io.h:35, from /usr/include/c++/3.3/bits/fpos.h:44, from
2008 Dec 31
1
wineg++ problem with the standard library
I got a really simple code to test but the author unfortunately used conio.h and system("cls") quite a few times. So I thought I'll check if I can use my Wine-1.1.11 instead of a windows installation that I keep on a VM. I used 'winemaker ./' and then 'make' and that's what I got: Code: szczerb at nomad ~/projekty/wine/plansza $ make wineg++ -c -mno-cygwin -I.
2012 Aug 02
2
[LLVMdev] Proposal to merge SimplifyLibCalls into InstCombiner
Hi All, I finally got around to cleaning up my proposal to merge `SimplifyLibCalls` into `InstCombiner`. There is still an open question or two and I am sure there are parts that could be better specified, but this is good enough to discuss. Feedback is most welcome. Abstract ======== This proposal is an attack plan for PR11895 [1]. Currently within LLVM we have two passes that are used to
2017 Jun 20
1
Can I use tabu search for minimization problem ?
Hi all, I want to use tabu search to solve my minimization problem. but tabu search in R is for maximization, so I turn my function from f to -f? but the eUtilityKeep always be 0 from the second position. I have go through a part of source code found that it always give the default value to compare, move <- ifelse(maxTaboo > maxNontaboo & maxTaboo > aspiration,
2013 Jan 26
1
[LLVMdev] lli problem with a simple OpenGL
 Hello, I wrote a very simple openGL application, as below #include #include int main(int argc, char **argv) {   glutInit(&argc, argv);   glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);   glutCreateWindow("red 3D lighted cube");   printf("GL_VERSION = %s\n",glGetString(GL_VERSION) );   return 0; } Compiling it with Clang and adding -lglut option worked
2002 Jan 21
1
help for tftp-hpa with libc5
I want to compile tftp-hpa on libc5 because we have many systems still using this library. There were some constants missing that i copied from glibc-2.1 headers, and now I'm left with this and I don't know what to do since all I can do is copy/paste, not touch real code :-) === gcc -O2 -m486 -fno-strength-reduce -D_XPG4_2 -D_XOPEN_SOURCE -D__EXTENSIONS__ -D_BSD_SOURCE -D_ISO9X_SOURCE
2018 Dec 29
2
bootstrapping llvm with advanced configuration
I can build llvm and associated tools in a 1 shot go using gcc and g++ but trying to use only gcc and bootstrap clang to build and link with libc++ and libc++abi on the second phase of the build, the compilation fails I have svn cloned LLVM CLANG CLANG_XTRA_TOOLS LLD LLDB POLLY COMPILER_RT OPENMP LIBCXX LIBCXXABI cmake command below cmake -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=OFF
2018 May 11
0
Wine release 3.8
The Wine development release 3.8 is now available. What's new in this release (see below for details): - Infrastructure for writing kernel driver tests. - Support for showing file properties in the Shell browser. - MP3 decoder as a DirectX Media Object. - More support for the Task Scheduler. - Support for COM aggregation in UrlMon. - Various bug fixes. The source is available
2009 Aug 10
2
VAD performance worse on version 1.2rc1 than 1.1.12
Hi Cecile, it seems it is a tabu theme, or nobody uses VAD on speex. I've tried with external EasyVAD solution but the result was not as spected. Other users of the list suggest an algorithm to filter voice based on the power of the signal, but of course, it is not a voice activity detection. I am waiting also a solution for this, while so I use version 1.1.12. Regards. Cecile Dumotier
2017 Dec 15
0
Register Allocation Graph Coloring algorithm and Others
On 12/14/2017 10:18 PM, Leslie Zhai wrote: > Hi GCC and LLVM developers, > > I am learning Register Allocation algorithms and I am clear that: > > * Unlimited VirtReg (pseudo) -> limited or fixed or alias[1] PhysReg > (hard) > > * Memory (20 - 100 cycles) is expensive than Register (1 cycle), but > it has to spill code when PhysReg is unavailable > It might be
2009 Aug 12
0
VAD performance worse on version 1.2rc1 than 1.1.12
Thank you, but I am thinking about trying to move VAD implementation from 1.1.12 to 1.2. I'm not sure about how difficult it could be (maybe impossible due to Jean Marc has disappear). Have you tried this? Cecile. 2009/8/10 jesus <jmorion at toomeeting.com> > Hi Cecile, > > it seems it is a tabu theme, or nobody uses VAD on speex. I've tried > with external EasyVAD
2008 Dec 15
0
preprocessor VAD only rocognize between silence andnot silence
Jesus, Unfortunately, FFT and magic algorithms don't work (yet?). You might want to try this if you're not satisfied with Speex VAD: http://lists.xiph.org/pipermail/speex-dev/2008-August/006860.html It won't perform any miracles, but I think it works pretty well and is easy to tweak. Tom >---- Original Message ---- >From: jmorion at toomeeting.com >To: speex-dev at
2006 Oct 16
0
No window decorations for simple glut app on compiz/aiglx?
The simple glut app below demonstrates a problem i'm seeing here. It fails to get a title bar, window frame or any other wm decorations. Same results when passing -direct or -indirect on command line. It works as expected when compiz isn't the WM. Can anyone else confirm they see this too? Any suggestions on how to fix this up? Thanks much, Sean P.S. compiled with -lGL -lglut and
2009 Jan 22
0
[LLVMdev] Using LLVM as cross-compiler to C
On Wed, Jan 21, 2009 at 3:40 PM, Dave Nadler <Dave.Nadler at nadler.com> wrote: > Hi All - Newbie warning... I am developing for a target that does not have > a functioning C++ environment, and need to use C++. It was suggested that I > could use LLVM to compile to C (using llc -march=c), then run the resulting > C-code through the working C-cross-compilation tools. So, some
2007 Mar 19
1
OpenGL support on wine 0.9.21 in Fedora Core 5
I need wine to compile with OpenGL support for various applications that I am trying to run, but during the configuration I get this error message: configure: WARNING: Wine will be build without OpenGL or Direct3D support configure: WARNING: because something is wrong with the OpenGL setup: configure: WARNING: No OpenGL library found on this system. here is the GL configration message: checking
2016 Apr 12
0
Wine release 1.8.2
The Wine maintenance release 1.8.2 is now available. What's new in this release (see below for details): - Various bug fixes. - Small translation updates. The source is available from the following locations: http://dl.winehq.org/wine/source/1.8/wine-1.8.2.tar.bz2 http://mirrors.ibiblio.org/wine/source/1.8/wine-1.8.2.tar.bz2 Binary packages for various distributions will be
2007 Dec 29
2
[LLVMdev] llvm-gcc-4.2 and -O4
What are the current limitations of using -O4 in llvm-gcc-4.2? As a first test, I compiled the molscript program first as -O3 and it works fine. However if i try to compile the same code as -O4, the build fails with... ar -cru clib.a args.o str_utils.o dynstring.o err.o indent.o vector3.o matrix3.o quaternion.o body3d.o extent3d.o io_utils.o colour.o key_value.o named_data.o double_hash.o
2006 Aug 26
2
Compiling wine on AMD64
I've been trying various ways of getting wine running on my 64 bit ubuntu machine. So far I haven't been very successful. I am trying the source for 0.9.20 and I'm using the latest k8 kernel in ubuntu. I have an nvidia card and am using the latest glx drivers available in ubuntu (1.0.8762). I am using the guide here: http://wiki.winehq.org/WineOn64bit with help from here:
2012 Oct 29
3
[Bug 56546] New: crash at the second render when applying gamma correction
https://bugs.freedesktop.org/show_bug.cgi?id=56546 Priority: medium Bug ID: 56546 Assignee: nouveau at lists.freedesktop.org Summary: crash at the second render when applying gamma correction Severity: critical Classification: Unclassified OS: Linux (All) Reporter: yves at 3delight.com