Displaying 20 results from an estimated 300 matches similar to: "[LLVMdev] The source code Makefile (newbie with pass registering Problem)"
2008 Apr 21
1
[LLVMdev] newbie with pass registering Problem
Hi!!
This is my first time with llvm. I'm still learning and really need help.
I wrote only one Function Pass, which uses another Function Pass (blockNrs), and registered this:
RegisterPass<FunctionAnalysis> X("gasched", "Genom Scheduling Pass");
When I compile my sourcecode, everything was okay. But when I tried to test it, i got this error Message:
nicole at
2008 Apr 22
1
[LLVMdev] newbie with pass registering Problem
Hi!!
This is my first time with llvm. I'm still learning and really need help.
I wrote only one Function Pass, which uses another Function Pass (blockNrs), and registered this:
RegisterPass<FunctionAnalysis> X("gasched", "Genom Scheduling Pass");
When I compile my sourcecode, everything was okay. But when I tried to test it, i got this error Message:
nicole at
2008 Apr 23
0
[LLVMdev] newbie with pass registering Problem
Hi John!!
>1) Have you ensured that your passes have different arguments to the =
>RegisterPass constructor (i.e., they have different names)?
Yes, I only write one Pass (Function Pass) and gave it that one name.
>2) Are you sure that variable X is only being defined once? There are =
>some ways in which you could have unintentionally defined it twice. For =
>example, if you
2008 Apr 26
0
[LLVMdev] The source code Makefile (newbie with pass registering Problem)
Hi Dominic!!
Oh thanks for your advice. I'll try it.
-nic-
> This doesn't directly answer your question, however I'm hoping it might
> set someone on the right path to help. I've had problems passing
> CPPFLAGS through from my Makefiles to the llvm compile command line. It
> seems that anything I set in CPPFLAGS is set in the llvm Makefiles
> themselves (seen
2011 Jul 15
2
[LLVMdev] Makefile Question
Hello,
I have a question about how to set up a Makefile that generate a .so that I
can load into opt without getting duplicate symbols. Here's what I have
right now:
LIBRARYNAME=previrt
SHARED_LIBRARY=previrt
LINK_COMPONENTS := transformUtils
LINK_LIBS_IN_SHARED=1
include $(LEVEL)/Makefile.common
LIBS += -lprotobuf
CPPFLAGS += -I${HOME}/.root/usr/include -DGOOGLE_PROTOBUF_NO_RTTI
LDFLAGS
2005 May 27
0
[LLVMdev] Lightweight code loader
On Fri, 2005-05-27 at 18:10 -0400, Alexander Friedman wrote:
> On May 26, Reid Spencer wrote:
> > Alexander,
> >
> > Yes, a patch like that would be accepted. Fewer dependencies = good :)
> >
> > Some notes on doing this:
> >
> > (1) Please make sure you use the std c++ iostream libraries for doing
> > I/O. No native calls (we end up with
2011 Jul 15
2
[LLVMdev] Makefile Question
I thought it would, but it seems to be missing the CloneModule symbol (which
isn't called from anywhere in the LLVM codebase).
On Fri, Jul 15, 2011 at 7:43 AM, John Criswell <criswell at illinois.edu>wrote:
> On 7/14/11 7:36 PM, Gregory Malecha wrote:
>
> Hello,
>
> I have a question about how to set up a Makefile that generate a .so that I
> can load into opt
2011 Jul 15
0
[LLVMdev] Makefile Question
On 7/14/11 7:36 PM, Gregory Malecha wrote:
> Hello,
>
> I have a question about how to set up a Makefile that generate a .so
> that I can load into opt without getting duplicate symbols. Here's
> what I have right now:
Have you tried removing LINK_COMPONENTS below? I suspect that the opt
binary already contains everying in the transformUtils library.
-- John T.
>
>
2005 May 19
3
[LLVMdev] [Cygwin] llvm 'make install' build errors
Reid,
I think it is the first time it is run that the errors occcur !?
Not sure but that would seem logical.
Aaron
2011 Jul 15
0
[LLVMdev] Makefile Question
Hi Gregory,
I had a similar problem a while back, see:
http://lists.cs.uiuc.edu/pipermail/llvmdev/2010-June/032508.html for
my solution to this problem.
Basically I ended up linking in the *.o files needed to get exactly
what I needed (in your case, the file defining CloneModule and
whatever else you need), without pulling in too much (causing
duplicate symbol issues with opt).
Hopefully this
2013 Sep 10
3
to delete lines by means of a vector
Hi
I would like to eliminate a large number of lines of the dataframe df1
The lines to delete are given here by the values of Mat (ex : 2,4,7,10).
but I have a large number (300) values of Mat
dput(df1)
structure(list(Mat = c(1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 3, 3, 3,
3, 3, 4, 4, 4, 4, 4, 5, 5, 5, 5, 5, 5, 6, 6, 6, 6, 6, 6, 7, 7,
7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 10, 10,
10, 11,
2005 May 27
3
[LLVMdev] Lightweight code loader
On May 26, Reid Spencer wrote:
> Alexander,
>
> Yes, a patch like that would be accepted. Fewer dependencies = good :)
>
> Some notes on doing this:
>
> (1) Please make sure you use the std c++ iostream libraries for doing
> I/O. No native calls (we end up with portability problems). If you need
> something that must be ported, please add it to lib/System
Sure. What
2002 Sep 18
0
[LLVMdev] RE: Disk Space on /usr/dcs/projects
Thanks for the warning! I checked and the executables take up about 2/3 of
the space (380MB) vs. about 180MB for the libs. Since we are usually only
debugging one executable at a time (if any), I modified Makefile.common to
strip each executable in tools/Debug by default. You can define
KEEP_SYMBOLS in the Makefile of any particular tool in order to avoid
stripping that executable.
I have
2007 Jul 10
1
[LLVMdev] [PATCH] gprof needs symbols
I needed the following patch to be able to use gprof with profiled build.
regards,
Benoit
--- a/Makefile.rules (revision 37946)
+++ b/Makefile.rules (working copy)
@@ -212,6 +212,7 @@
CXX.Flags := $(OPTIMIZE_OPTION) -pg -g
C.Flags := $(OPTIMIZE_OPTION) -pg -g
LD.Flags := $(OPTIMIZE_OPTION) -pg -g
+ KEEP_SYMBOLS := 1
else
ifeq ($(ENABLE_OPTIMIZED),1)
BuildMode := Release
2007 Nov 22
5
Different networks between Dom0 and Guest?
Hi,
I''m running SLES10 SP1 with xen 3.0.4 and windows 2003 server as guest.
Is it possible to assign ips from different networks to Dom0 and Guest,
e. g. 172.27.10.1/24 for Dom0 and 172.27.15.1/24 for Guest?
I tried it, but I can''t reach the Guest.
If it''s possible, what should I have to configure?
Thanks!
Nicole
_______________________________________________
2012 Mar 07
3
pulling out 1 country and 1 wave
Hello.
I am trying to pull out one country from a time series of 5 waves. For example I need Norway from the 5th wave. This is new to me. Typically, I work with country specific surveys.
data = norway
I have attached a .tiff of the codebook showing the variable names for Norway and the wave. They appear to be Norway = v218 and wave = v15. But perhaps I am wrong and this is part of the
2012 Mar 30
3
pooling in MICE
Hi everyone,
Does anyone here has experience using MICE to impute missing value? I am
having problem to pool the imputed dataset for a MANOVA test, could you
give me some advice please?
Here is my code:
> library(mice)
>
2013 Mar 28
4
bayesian HLM random effects
Hello, all.
I've been working on this for sometime and was almost at the end/ last chunk of code i would need.... When I received an error. Rather than go to bed and think about it in the morning, I messed with my data and now I am not getting anything. I was up until 4am trying to fix this.
Zip files of my data are attached (the data which ends in 'a' matches with wvsA and the
2009 Feb 19
2
error bars
Hello, I have a very simple data set i imported from excel including 96
averages in a column along with 96 standard errors associated with those
averages (calculated in excel). I plotted the 95 averages using r and I am
wondering if it is possible to plot the second column of standard errors
while applying error bars to each value so they represent the error
corresponding to each average?
thanks,
2009 Apr 22
3
Rhelp
Hello,
I am trying to run R on my Mac (OS10.5.6) and am having trouble installing
and running packages (genefilter in particular in Bioconductor)
I've tried re-installing R and it hasn't solved the issue.
Thanks,
~Nicole Slusher