similar to: [LLVMdev] LLC fail without gccld optimization on spec2000 int benchmarks

Displaying 20 results from an estimated 1000 matches similar to: "[LLVMdev] LLC fail without gccld optimization on spec2000 int benchmarks"

2006 Apr 20
3
[LLVMdev] configuration error for the latest LLVM
I just checked out the latest LLVM version from CVS server. But the configuration failed. The messages are ... checking whether llvm-gcc is sane... yes configure: creating ./config.status config.status: creating Makefile.config config.status: creating docs/doxygen.cfg config.status: creating utils/llvm-config/llvm-config.in config.status: error: cannot find input file: utils/llvm-config/llvm-
2006 Apr 20
0
[LLVMdev] configuration error for the latest LLVM
Jing Yu wrote: > I just checked out the latest LLVM version from CVS server. But the > configuration failed. The messages are Check to see if the file llvm/utils/llvm-config/llvm-config.in.in <http://config.in.in> exists within your LLVM source tree. If not, try the following command inside your LLVM source tree: cvs up -P -d -A llvm/utils/llvm-config If that doesn't work,
2006 Aug 28
3
[LLVMdev] opt -load error on Darwin
Thank you, Reid. I have applied tha patch to ltdl.c ltdl.h. The problem still exists. I looked up the symbol on libLLVMCore.a, and found three U-entries and one T-entry. However, the Darwin linker is not able to find the T-entry. Any idea? pollux:~/test jingyu$ opt -load /Users/jingyu/tools/build-ppc/Release/lib/LLVMHello.so -help Error opening
2006 Aug 28
2
[LLVMdev] opt -load error on Darwin
Hi, I am following the instructions on Writing an LLVM Pass on Darwin(8.7.0) powerpc. The loadable library is built. But "opt -load " gives error saying "Symbol not found". I am using LLVM 1.8. Could someone tell me how to fix it? I have tried the same procedure on Pentium4 Redhat9. Everything is ok there. So I think there must be some specific problem on Darwin that I should
2012 Apr 14
1
[LLVMdev] Running test suite with LNT failed
> >  But I got the error message below, > > > > --- > > 2012-04-12 02:39:48: executing test modules > > 2012-04-12 02:39:49: loading nightly test data... > > nt.py:737: fatal error: nightly test failed, no report generated > > --- > > > >  Any idea on how I can figure out what the fatal error is? Thanks! > > Inside the sandbox there will
2006 Aug 28
0
[LLVMdev] opt -load error on Darwin
On Sun, 2006-08-27 at 21:57 -0500, Jing Yu wrote: > Hi, > Hi Jing, > I am following the instructions on Writing an LLVM Pass on > Darwin(8.7.0) powerpc. The loadable library is built. But "opt -load > " gives error saying "Symbol not found". I am using LLVM 1.8. Could > someone tell me how to fix it? I have tried the same procedure on > Pentium4 Redhat9.
2003 Oct 07
2
I need your help....
Hello, I have a problem, I can't install the package 'mgu74av2cdf'. I downloaded the zip file, yet when asked the R console to install it from a zip file, I got the answer: "Error in file(file, "r") : unable to open connection In addition: Warning messages: 1: error -1 in extracting from zip file 2: cannot open file `mgu74av2cdf/DESCRIPTION'
2006 May 19
0
[LLVMdev] help! How to build a shared library out of multiple cpp files in LLVM?
Hi guys, I am developing a LLVM project and using LLVM building system to make an opt pass. I find that if I implement class methods in seperate .cpp files(the class declaration is included by all .cpp files), it will have relocation error when I use opt -mypass to run it. I have tried to squeeze everything in one file, then all errors are gone. But when the program goes large(or have more than
2009 Apr 01
3
Fit unequal variance model in R
I'am trying to develop some code if R, which would correspond to what I did in SAS. The data look like: Treatment Replicate group1 GSI Control A 1 0.81301 Control B 1 1.06061 Control C 1 1.26350 Control D 1 0.93284 Low A 2 0.79359 Low B
2009 Apr 17
1
Monotone Transformation
Hi, I am trying to use R to mimic what I did in SAS. proc transreg data=x ; model identity(GSI)=monotone(group1); output out=d2 pprefix=M; run; Accroding to SAS documentation, the MONOTONE transfomation algorithm comes from (Kruskal 1964, secondary approach to ties). I have tried ace. it does provide some kind of monotone transformation, but it is not what I expected. Here is how
2006 Nov 08
0
[LLVMdev] 1.9 Next Steps
Hi Tanya, I've been checking the state of the various llvm-test failures on X86/Linux with GCC 3.4.6 and llvm-gcc4. I haven't finished this, but I thought the following might be useful for other people that are testing the release on Linux. Each group of failing tests below is followed by a comment about why its failing. llc /MultiSource/Applications/oggenc/oggenc jit
2011 Apr 30
2
[LLVMdev] Greedy register allocation
Perhaps you noticed that LLVM gained a new optimizing register allocator yesterday (r130568). Linear scan is going away, and RAGreedy is the new default for optimizing builds. Hopefully, you noticed because your binaries were suddenly 2% smaller and 10% faster*. Some noticed because LLVM started crashing or miscompiling their code. Greedy replaces a fairly big chunk of the code generator, so
2013 Oct 29
2
creating an ubuntu package of version 4.1.0
Hi, to build an ubuntu-package of samba4.1.0, I'm using a slightly modified debian package-configuration from a previous version. I created a quilt-patch (attached to this email) that sets the DISABLE_NTDB var again, to solve dependency problems. It's compiling nicely now, but I still get this linker-error: default/source3/lib/util_58.o: In function `str_checksum':
2011 Jun 24
2
[LLVMdev] Missing symbols in pass stack trace
> Try building with "make VERBOSE=1", which will show you the > command-lines passed to the compiler/linker. Post the output here. there you go: > cafxx at ubuntu:~/Projects/llvm2/lib/Transforms/cgf$ make VERBOSE=1 > llvm[0]: Compiling CGFPass.cpp for Debug+Asserts build (PIC) > if g++ -I/home/cafxx/Projects/llvm2/include >
2011 Jun 24
0
[LLVMdev] Missing symbols in pass stack trace
On Jun 24, 2011, at 10:34 AM, Carlo Alberto Ferraris wrote: > >> Looks like your shared library is not being compiled with symbols. Did you verify that your sources are compiled with -g? > I think so, this is the makefile (based on the one in the Hello pass): >> LEVEL = ../../.. >> LIBRARYNAME = CGF >> LOADABLE_MODULE = 1 >> USEDLIBS = >> >>
2011 Jun 24
2
[LLVMdev] Missing symbols in pass stack trace
> Looks like your shared library is not being compiled with symbols. > Did you verify that your sources are compiled with -g? I think so, this is the makefile (based on the one in the Hello pass): > LEVEL = ../../.. > LIBRARYNAME = CGF > LOADABLE_MODULE = 1 > USEDLIBS = > > ifneq ($(REQUIRES_RTTI), 1) > ifneq ($(REQUIRES_EH), 1) > EXPORTED_SYMBOL_FILE =
2015 Jun 10
2
[LLVMdev] Self-compiling clang on Windows
I'm trying to get clang 3.6.1 to compile itself on Windows, using this command line: msbuild /p:Configuration=Release /p:CLToolExe=clang-cl.exe /p:CLToolPath=c:\llvm\build\Release\bin\ /p:TrackFileAccess=false /p:Platform="x64" /fileLogger ALL_BUILD.vcxproj It barfed on an occurrence of __try but that was only in a test file so I commented it out and retried. Now it's getting
2008 Mar 05
2
[LLVMdev] Error messages in llvm-test
Hi all, llvm-test fails on me in the first test (and many subsequent tests, but I hope that fixing the first test will allow me to continue). I see syntax errors from the C compiler and core dumps from llc. Is any of this supposed to happen? This is still on my amd64 machine. However, the build process is using the right incantation to compile (gcc-4.2 -m32 -Wl,-melf_i386). The llvm-gcc
2023 Mar 28
1
[External] subfolders in the R folder
A quick drive-by-comment: What if 'R CMD build' would have an option to flatten R/ subfolders when building the tarball, e.g. R/unix/a.R R/windows/a.R R/a.R becomes: R/00__unix__a.R R/00__windows__a.R R/a.R ? Maybe that would be sufficient for most use cases. The only thing I can imagine is that source file references (e.g. in check NOTEs) will be toward the latter and not the
2009 Jun 29
1
Linux Installation Version
Hello, I would like to download the correct R program RMP for my linux distribution, but I am not sure which one I need. The results of a "cat /proc/version" is: Linux version 2.6.23-9.ydl6.1 (root at build2.terraplex.com) (gcc version 4.1.1 20070105 (Red Hat 4.1.1-52.ydl.1)) #1 SMP Sat Jan 26 20:16:15 EST 2008 The results of a "uname -a" is: Linux localhost.localdomain