similar to: [LLVMdev] project built with LLVM

Displaying 20 results from an estimated 700 matches similar to: "[LLVMdev] project built with LLVM"

2004 Aug 06
3
Icecast User Login Question
Hello, I have stumbled upon your email address in my search for finding an answer to a problem I'm looking into for school. I attend the Univ. of Cincinnati and am working on my Senior Design Capstone project. I am working with a local independent radio station, WOXY, which is interested in updating its streaming radio to Icecast. I have taken this project under my wing and have tried
2018 Apr 02
1
Custom Binary Format Challenges
The bitcode is only a representation of the IR, which is in SSA form. And SSA form assumes an infinite amount of registers, which is not offered by x86. When bitcode gets assembled/compiled to machine language, it breaks down the SSA form into non-SSA format. Personally I don't know how to use bitcode language to achieve what you want to do. The closest thing I can think of is the llvm-MC
2004 Aug 06
2
Icecast User Login Question
On Mon, 2003-11-03 at 19:54, Dave St John wrote: > Good question Amy, here is a snippet of the icecast2.xml file that i do > believe is for this function > --------------------- > <mount> > <mount-name>/test2</mount-name> > > <username>admin</username> > <password>holycow</password> > >
2005 Jun 22
17
[PATCH] fix broken ACM
The latest change to ACM makes it fail to compile. This patch fixes the problem. Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com> $ diffstat acm.patch acm/acm_core.c | 61 --------------------- include/acm/acm_hooks.h | 135 ++++++++++++++++++++++++++++++++++-------------- 2 files changed, 96 insertions(+), 100 deletions(-) _______________________________________________
2002 Mar 23
3
Rsync permissions...
I am transferring some files from a RH7.0 machine to a RH7.2 machine as root with a cron job, using the following: rsync -avt /home homeserver::home rsync -avt /etc homeserver::etc Some of the files transfer OK, but I get: building file list ... done failed to set permissions on home : Operation not permitted home/brad/ home/ftp/bin/ home/ftp/etc/ home/ftp/pub/ home/rsyncuser/ failed to set
2005 May 28
2
[PATCH] Makefile uninstall not to remove libxutil
libxutil is not build and installed by default, so "Makefile uninstall" will not try to remove it. This patch is against -unstable, ChangeSet@1.1575 Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com> ===== Makefile 1.94 vs edited ===== --- 1.94/Makefile 2005-05-25 03:54:03 +09:00 +++ edited/Makefile 2005-05-28 02:09:46 +09:00 @@ -160,7 +160,7 @@ uninstall: [ -d
2005 Apr 25
16
[PATCH] Guest boot loader support
Attached is an updated version of the patch to add boot loader support for guest domains. Changes from the initial set of patches: * Per Ian''s request, adds an option to specify booting a specific kernel from the host domain (you can specify it either with the title of the boot loader config entry or with the grub 0-based index) * Reduces some of the code duplication for finding out
2018 Apr 02
0
Custom Binary Format Challenges
If you can write what you want to output in C with asm statements, clang can show you what the IR should look like. On Mon, Apr 2, 2018 at 7:35 AM, Kenneth Adam Miller via llvm-dev < llvm-dev at lists.llvm.org> wrote: > Program counter - EIP, RIP for x86/64. I need to obtain it and pass it as > an argument to the function that calculates an ordinal from it. > > I think that
2004 Aug 06
0
Icecast User Login Question
Good question Amy, here is a snippet of the icecast2.xml file that i do believe is for this function --------------------- <mount> <mount-name>/test2</mount-name> <username>admin</username> <password>holycow</password> <max-listeners>1</max-listeners> <!--
2012 Jul 17
0
Building a web risk calculator based on Cox PH--definitive method for calculating probability?
Hello all, I am a medical student and as a capstone for my summer research project I am going to create a simple online web "calculator" for users to input their relevant data, and a probability of relapse within 5 years will be computed and returned based on the Cox PH model I have developed. The issue I'm having is finding a definitive method/function to feed the user's
2002 Apr 06
1
ERROR: chroot failed
I am trying to use rsync to transfer some directories from a RedHat 7.0 box to a RedHat 7.1 rsync server via a cron job. The cron command line: 00 00 * * * /usr/local/bin/emailbackup > /tmp/backup.log 2>&1; mail -s "Rsync Backup Log" my@emailaddres < /tmp/backup.log The 7.1 rsyncd.cond; [home] path = /home/brad/data/emailbackup read only = no uid = root gid = root The
2004 Aug 06
0
Icecast User Login Question
>I can have a look at implementing this when I get chance. That would be great as the devs at shoutcast have absolutely no interest or so it seems in adding this feature, which causes people to rely on 3rd party scripts to handle the authentication, which is shotty at best. <p><p>Dave St John (CEO) Mediacast1.com ----- Original Message ----- From: "Karl Heyes"
2012 Jul 18
0
Building a web risk calculator based on Cox, PH--definitive method for calculating probability?
Here is an example of how to do it. > library(survival) > vfit <- coxph(Surv(time, status) ~ celltype + trt, data=veteran) > userinput <- data.frame(celltype="smallcell", trt = 1) > usercurve <- survfit(vfit, newdata=userinput) #the entire predicted survival curve > user2 <- summary(usercurve, time= 2*365.25) # 2 year time point > user2$surv [1]
2018 Apr 01
2
Custom Binary Format Challenges
Program counter - EIP, RIP for x86/64. I need to obtain it and pass it as an argument to the function that calculates an ordinal from it. I think that there must be some way to use the bitcode language to place byte values at a designated offset. Or use the command line to specify the section and offset for the data. On Sun, Apr 1, 2018 at 6:00 PM, Brenda So <sogun3 at gmail.com> wrote:
2005 Jul 04
0
[PATCH 2/2] xm info (2)
This patch extends libxc for few new functions on xen version and xen compile info. It also extends python wrapper correspondingly. Here is the output of new "xm info" --- #xm info system : Linux host : ubuntu xen_release : 3.0-devel xen_compile_by : root@localdomain xen_compiler : gcc version 3.3.5 (Debian 1:3.3.5-8ubuntu2)
2005 Jun 01
0
[PATCH] remove ununsed code in XendDB.py
This patch removes some unused methods from XendDB.py in -unstable (as of ChangeSet@1.1623) Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com> $ diffstat xenddb.patch XendDB.py | 11 ----------- 1 files changed, 11 deletions(-) _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2005 Jun 21
3
[PATCH] Makefiles of policy_tool
This patch (againstChangeSet@1.1727) makes some cleanups to Makefile of policy_tool, and add install target. It also removes policy_tool in uninstall target from top level Makefile. Signed-off-by: Nguyen Anh Quynh <aquynh@gmail.com> Makefile | 1 + tools/policy/Makefile | 19 +++++++++++++------ 2 files changed, 14 insertions(+), 6 deletions(-)
2005 May 18
2
[PATCH] remove tabs from xm/main.py
hello, while investigating xm/main.py, i found that it is mixed with tabs and whitespaces. that is annoying and may get us misleaded when reading code. looks like that the conventional coding style of Python (and also C?) in Xen is to use (4) whitespaces instead of tabs? could anybody confirm this? i searched in all tree and found bunch of files like this. if nobody complains, i will catch them
2005 Apr 29
2
[PATCH] xen-booloader: pygrub improvement & bug fix
hello, here is a patch to improve and fix few bugs in pygrub of xen-booloader. 1) If you already patched my last 2 patches on top of last Jeremy''s patch, then go on to apply pygrub.aq.patch. # diffstat pygrub.aq.patch pygrub | 53 +++++++++++++++++++++++++++-------------------------- 1 files changed, 27 insertions(+), 26 deletions(-) 2) If you havent applied any patches on top of
2011 Oct 13
0
[LLVMdev] llvm-objdump related patch
On Wed, Oct 12, 2011 at 3:17 AM, Songmao <smtian at ingenic.cn> wrote: > Michael, >    I have rework the patch according to your suggestion.  And I have read > binutil/objdump source code and found that it has a logic that if there's no > symtab, it will use dynsym, which is missing in llvm-objdump. > > Songmao > @@ -747,12 +747,28 @@ error_code