similar to: [LLVMdev] Package llvm-mode for MELPA and Marmalade

Displaying 20 results from an estimated 9000 matches similar to: "[LLVMdev] Package llvm-mode for MELPA and Marmalade"

2018 Oct 23
0
elpa-ess fails to initialize after update to 18.10 on ubuntu bionic
Hi Chris, On 22 October 2018 at 22:22, Chris Sims wrote: | The latest ess and elpa-ess 18.10-1bionic0 packages for ubuntu leave | ess unable to find initialization files when it is invoked from R via | M-x R. I've found a workaround by creating a soft link: | | cd /usr/share | sudo ln -s /usr/share/emacs/site-lisp/elpa-src/ess-18.10 ess | | but this may be a widespread problem. It
2018 May 10
0
Migrating the llvm-emacs mode to a separate git repository
Jaseem Abid via llvm-dev <llvm-dev at lists.llvm.org> writes: > Hello llvm devs, > > Melpa[1] is pretty much the most common package manager for emacs and very > recently the llvm-mode got removed from it[2] due to performance issues. > This issue is not unique to llvm-mode, but affects a bunch of projects with > very large git repositories[3]. > > Will it be possible
2018 May 10
2
Migrating the llvm-emacs mode to a separate git repository
Another crazy idea – can mepla use shallow clone / sparse checkout? Will it speed up all the things? On Fri, May 11, 2018 at 1:18 AM, Justin Bogner via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Jaseem Abid via llvm-dev <llvm-dev at lists.llvm.org> writes: >> Hello llvm devs, >> >> Melpa[1] is pretty much the most common package manager for emacs and very
2018 May 10
1
Migrating the llvm-emacs mode to a separate git repository
As far as I can see, melpa dropped svn support some time ago.... https://github.com/melpa/melpa/pull/4802 On Thu, May 10, 2018 at 11:51 AM, Tim Northover via llvm-dev <llvm-dev at lists.llvm.org> wrote: > On 10 May 2018 at 06:07, Jaseem Abid via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> Melpa[1] is pretty much the most common package manager for emacs and very
2018 May 10
4
Migrating the llvm-emacs mode to a separate git repository
Hello llvm devs, Melpa[1] is pretty much the most common package manager for emacs and very recently the llvm-mode got removed from it[2] due to performance issues. This issue is not unique to llvm-mode, but affects a bunch of projects with very large git repositories[3]. Will it be possible to split this into a new separate git repo? This should make it easier for the emacs community to work
2015 Jan 05
2
[LLVMdev] [PATCH] Fix Emacs package formatting
Hi I'd like users to be able to install the LLVM major modes from MELPA[1], the most popular Emacs package repository. However, these files are not well-formed packages. I've made the following changes: * Both files have valid package headers and footers (you can verify with M-x checkdoc). * Fixed style warnings generated by checkdoc. * Fixed a byte-compiler warning in llvm-mode.el. *
2012 Sep 30
3
[LLVMdev] Hello World assembly without clib "puts"?
Can Hello World be written in LLVM assembly without using a C library function like "puts"? Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120929/ed2e5f2f/attachment.html>
2018 May 10
0
Migrating the llvm-emacs mode to a separate git repository
On 10 May 2018 at 06:07, Jaseem Abid via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Melpa[1] is pretty much the most common package manager for emacs and very > recently the llvm-mode got removed from it[2] due to performance issues. Wouldn't svn be better here? It ought to allow you to checkout just the utils/emacs directory (or not even that with "svn cat").
2011 Mar 05
0
[LLVMdev] Building LLVM on MinGW32 / Windows 7 Professional x64
Hi Andrew, > When I try to compile LLVM, a dialog pops up halfway through the process: > "tblgen.exe has stopped working" and the build quits. > > I would really appreciate a binary pack for llvm-as, llc, etc. indeed windows is the only platform for which the LLVM core tools like llvm-as, llc etc are not provided in the binary distribution. I think it would be better if
2012 Oct 02
2
rsync hashing / collision handling?
Based on the published rsync algorithm (pdf<http://cs.anu.edu.au/techreports/1996/TR-CS-96-05.pdf>), it appears to filter definitely different blocks from possibly unchanged blocks using weak hashing, then applying strong hashing to double-check the rest of the file for true differences. MD4 and MD5 do experience collisions, so isn't rsync fast at the risk of being inaccurate? If I can
2012 Oct 18
4
Trouble with parentheses in Markdown hyperlinks
How can we improve URL detection in Markdown? I posted a question on Stack Overflow and happened to click a URL in my post. To my surprise, it wasn't functional, and it took three different, nonintuitive manipulations before I achieved a functional URL. Stack Overflow says "not my problem", so I'm deferring to Markdown itself. Here's a
2013 Nov 20
2
[LLVMdev] clang.exe: fatal error: 'stdio.h' file not found
I'm trying to compile hello.c with clang.exe, but I'm getting an error about missing cstdlib headers. Source: https://github.com/mcandre/mcandre/tree/master/c/hello/ Trace: C:\Users\andrew\Desktop\src\mcandre\c\hello>gmake clang -O2 -Wall -Wextra -Wmost -Weverything -o hello hello.c hello.c:1:10: fatal error: 'stdio.h' file not found #include <stdio.h> ^ 1
2011 Mar 05
3
[LLVMdev] Building LLVM on MinGW32 / Windows 7 Professional x64
When I try to compile LLVM, a dialog pops up halfway through the process: "tblgen.exe has stopped working" and the build quits. I would really appreciate a binary pack for llvm-as, llc, etc. Specs: GCC 4.5.2 MinGW-Get 0.1-alpha-5.1 Windows 7 Professional x64 Steps: Install MinGW (
2014 Feb 05
2
[LLVMdev] How can I get llvm-as for Ubuntu?
I used to be able to `apt-get install llvm` to install `llvm-as`, an LLVM assembler. I think some tools/packages have moved around since then. What can I use to compile `.ll` assembler files into executables? -- Cheers, Andrew Pennebaker www.yellosoft.us -------------- next part -------------- An HTML attachment was scrubbed... URL:
2015 Jan 06
2
[LLVMdev] [PATCH] Fix Emacs package formatting
btw, do you have commit access or should I commit it? On 6 January 2015 at 11:22, Rafael Espíndola <rafael.espindola at gmail.com> wrote: > LGTM, thanks! > > On 4 January 2015 at 19:08, Wilfred Hughes <me at wilfred.me.uk> wrote: >> Hi >> >> I'd like users to be able to install the LLVM major modes from >> MELPA[1], the most popular Emacs package
2018 Oct 23
2
elpa-ess fails to initialize after update to 18.10 on ubuntu bionic
The latest ess and elpa-ess 18.10-1bionic0 packages for ubuntu leave ess unable to find initialization files when it is invoked from R via M-x R. I've found a workaround by creating a soft link: cd /usr/share sudo ln -s /usr/share/emacs/site-lisp/elpa-src/ess-18.10 ess but this may be a widespread problem. It appeared on each of the three computers on which I updated the packages, and
2018 May 11
1
Migrating the llvm-emacs mode to a separate git repository
Another idea: extract the history of tablegen-mode into a separate orphan branch, and merge it routinely. Have a policy of always using that branch to contribute to tablegen-mode, and merge it back into mainline routinely. MELPA can then request git to do a single-branch clone. Ram On Thu, May 10, 2018 at 11:57 PM Tim Northover <t.p.northover at gmail.com> wrote: > On 10 May 2018 at
2019 Jul 25
1
Re: [PATCH libnbd 1/3] generator: Change Closure so it describes single callbacks.
On Wed, Jul 24, 2019 at 05:17:51PM +0100, Richard W.M. Jones wrote: >On Wed, Jul 24, 2019 at 10:02:04AM -0500, Eric Blake wrote: >> On 7/24/19 7:17 AM, Richard W.M. Jones wrote: >> > + pr " py_args = Py_BuildValue (\"(\""; >> > + List.iter ( >> > + function >> > + | ArrayAndLen (UInt32 n, len) -> pr
2018 May 11
0
Migrating the llvm-emacs mode to a separate git repository
On 10 May 2018 at 23:56, Anton Korobeynikov via llvm-dev <llvm-dev at lists.llvm.org> wrote: > Another crazy idea – can mepla use shallow clone / sparse checkout? > Will it speed up all the things? Even http would do, the raw file links on github are pretty stable. Tim.
2004 Sep 10
4
Blocking and compression.
I did some research on patent claims on range and arithmetic coding. The original range code pdf presented in the UK by an ibm employee at the time asserts no patent claims what so ever. If there are patents I cant find em. I have the original paper in PDF if anyone cares to see it. Its a good candidate for encoding because browsing a few of the implememntations avaialable on line, I can roll my