Displaying 20 results from an estimated 1000 matches similar to: "port Opus to Javascript using Emscripten"
2011 Dec 16
2
[LLVMdev] Emscripten: LLVM => JavaScript
Hi everyone,
I wanted to mention a project using LLVM: Emscripten. Emscripten
is an open source LLVM to JavaScript compiler,
http://emscripten.org
https://github.com/kripken/emscripten/
There are various demos linked to on the wiki (the first link),
of various large C/C++ codebases compiled to JS and running
on the web, like Python, Bullet, Poppler, etc.
Emscripten is not a
2011 Dec 16
0
[LLVMdev] Emscripten: LLVM => JavaScript
On Thu, Dec 15, 2011 at 4:10 PM, Alon Zakai <azakai at mozilla.com> wrote:
> On that topic, I see there is an LLVM users page,
>
> http://llvm.org/Users.html
>
> - what is the procedure for suggesting adding a project to
> there?
Send a patch to llvm-commits.
> The third issue I want to raise is regarding closer
> integration with LLVM. Right now, Emscripten uses
2011 Dec 17
0
[LLVMdev] Emscripten: LLVM => JavaScript
On Fri, Dec 16, 2011 at 7:14 PM, Alon Zakai <azakai at mozilla.com> wrote:
>
>
> ----- Original Message -----
>> From: "Eli Friedman" <eli.friedman at gmail.com>
>> To: "Alon Zakai" <azakai at mozilla.com>
>> Cc: llvmdev at cs.uiuc.edu
>> Sent: Thursday, December 15, 2011 7:02:34 PM
>> Subject: Re: [LLVMdev] Emscripten:
2011 Dec 17
3
[LLVMdev] Emscripten: LLVM => JavaScript
----- Original Message -----
> From: "Eli Friedman" <eli.friedman at gmail.com>
> To: "Alon Zakai" <azakai at mozilla.com>
> Cc: llvmdev at cs.uiuc.edu
> Sent: Thursday, December 15, 2011 7:02:34 PM
> Subject: Re: [LLVMdev] Emscripten: LLVM => JavaScript
> On Thu, Dec 15, 2011 at 4:10 PM, Alon Zakai <azakai at mozilla.com>
> wrote:
>
2015 May 05
2
Compiling opus with emscripten: malloc_hook
Hi xiph,
I'm trying to compile libopus from git.xiph.org/opus.git with
emscripten. The regular:
$ emconfigure ./configure --enable-fixed-point
$ emmake make
gets me quite far, but it hangs on the use of __malloc_hook in the tests:
tests/test_opus_api.c:1776:16: error: use of undeclared identifier
'__malloc_hook'; did you mean 'malloc_hook'?
orig_malloc=__malloc_hook;
2019 Feb 20
2
Compile R to WebAssembly / Emscripten?
Has anyone attempted to compile R (probably without any OS bindings) to
WebAssembly / Emscripten? If so, how far did you get? (would be crazy
awesome if you could get all the way to a ggplot bitmap output). If not, is
this a waste of time or is there some daylight to doing this?
[[alternative HTML version deleted]]
2013 Jan 02
3
[LLVMdev] LLVM IR execution in JavaScript
On 02.01.2013, at 19:51, Eli Bendersky wrote:
>> I compiled parts of LLVM to JavaScript using emscripten and made a demo of parsing and executing LLVM assembly,
>>
>> http://kripken.github.com/llvm.js/demo.html
>>
>> Basically you enter some LLVM IR, press a button and see the output of compiling and running it, directly in the browser.
>>
>> This was
2013 Jan 02
0
[LLVMdev] LLVM IR execution in JavaScript
----- Original Message -----
> From: "Sebastian Redl" <sebastian.redl at getdesigned.at>
> To: "Eli Bendersky" <eliben at google.com>
> Cc: "Alon Zakai" <azakai at mozilla.com>, "llvmdev" <llvmdev at cs.uiuc.edu>
> Sent: Wednesday, January 2, 2013 11:24:33 AM
> Subject: Re: [LLVMdev] LLVM IR execution in JavaScript
>
2013 Jan 02
2
[LLVMdev] LLVM IR execution in JavaScript
On 02.01.2013, at 20:37, Alon Zakai wrote:
>
>
> ----- Original Message -----
>> From: "Sebastian Redl" <sebastian.redl at getdesigned.at>
>>
>> It would be awesome to combine the llvm.org demo with the in-browser
>> emscripten (or possibly a server-side emscripten) so that the user
>> can execute his snippets in the browser.
>>
2013 Feb 13
2
Vorbis encoding using JavaScript
Hello,
First of all, I am a complete newblet to anything dealing with audio (a lot
of the vocabulary is still rather mysterious to me). I also don't often
program in C so please don't throw too many stones if my workflow is less
than ideal. :)
I would like to port the vorbis encoder to JavaScript. Instead of porting
everything by hand from ground up, which would take who-knows-how-long,
2019 Feb 26
1
Compile R to WebAssembly / Emscripten?
As I recall, the major blocker is that R links against a number of other
things (notably BLAS, pcre, etc) so while technically possible (?) I
suppose, the universe of things you'd have to compile over and then get
working is much larger than just the R internals.
I think most people who consider this (including me years ago, as well as
the poster of Gabor's message to rdevel) hit that
2010 Oct 03
0
[LLVMdev] JavaScript Backend
On Oct 2, 2010, at 8:11 PM, David LaPalomento wrote:
> Hi all,
> Over the past couple weeks, I've been putting together a JavaScript
> backend for LLVM. At this point, I believe I've got reasonable
> implementations for all the instructions, primitives and derived
> types. I haven't gotten around to most of the intrinsics but I thought
> it would be a good idea to
2013 Jan 02
2
[LLVMdev] LLVM IR execution in JavaScript
Hi everyone,
I compiled parts of LLVM to JavaScript using emscripten and made a demo of parsing and executing LLVM assembly,
http://kripken.github.com/llvm.js/demo.html
Basically you enter some LLVM IR, press a button and see the output of compiling and running it, directly in the browser.
This was done mainly as a fun hacking project over the holidays, but I'm posting it here in case
2013 Jan 02
0
[LLVMdev] LLVM IR execution in JavaScript
> I compiled parts of LLVM to JavaScript using emscripten and made a demo of parsing and executing LLVM assembly,
>
> http://kripken.github.com/llvm.js/demo.html
>
> Basically you enter some LLVM IR, press a button and see the output of compiling and running it, directly in the browser.
>
> This was done mainly as a fun hacking project over the holidays, but I'm posting it
2015 May 05
0
Compiling opus with emscripten: malloc_hook
On Tue, May 5, 2015 at 10:05 AM, Hraban Luyat <hraban at 0brg.net> wrote:
> gets me quite far, but it hangs on the use of __malloc_hook in the tests:
[...]
> As a work-around, I just %s/__malloc_hook/malloc_hook/g. I don't need
> the tests for emscripten so I don't care if this is correct or not.
>
> But does anyone know of a proper fix that could find its way back
2014 Dec 31
0
port Opus to Javascript using Emscripten
> No one has done any work on an encoder in JS that I know of
Just in case there is still someone looking for an opus encoder; the opusenc tool is now available on https://github.com/Rillke/opusenc.js
Demo and project website: https://blog.rillke.com/opusenc.js/
-- Rillke
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2019 May 08
2
Where to send emails with questions about WebAssembly?
Okay, so where should I send questions for WebAssembly? Is it this mailing list or a different one? I want to ask about how to compile WebAssembly modules with Clang directly, without Emscripten, for situations like what I have currently where I have a problem with generating WebAssembly and/or JavaScript glue code (I have a problem with the gen_struct_info stuff; I asked on the Emscripten
2015 Jan 20
2
FW: flac (encoder, analyzer, decoder) tool now (also) available in JavaScript
Hi List!
On flac--l I was advised to cross-post to this list. So here is an extended version:
After compiling opusenc.js to JavaScript [1], now the flac tool is also available [2][3], too.
s/Check out/Clone/ https://github.com/Rillke/flac.js !
I
am slightly nervous about its license, the GPL and what CloudFlare is
doing: It's melting a lot of content together into one file (but not
2010 Oct 03
4
[LLVMdev] JavaScript Backend
Hi all,
Over the past couple weeks, I've been putting together a JavaScript
backend for LLVM. At this point, I believe I've got reasonable
implementations for all the instructions, primitives and derived
types. I haven't gotten around to most of the intrinsics but I thought
it would be a good idea to start getting some feedback before going
much further. If anyone has the time and
2011 Dec 12
2
[LLVMdev] [RFC]Extending lib/Linker to support bitcode "shared objects"
On Sun, Dec 11, 2011 at 2:19 PM, Rafael Ávila de Espíndola <
rafael.espindola at gmail.com> wrote:
> On 08/12/11 03:56 PM, Ivan Krasin wrote:
> > Hi llvm team!
> >
> > I'm currently working on the extended version of llvm-ld, which has an
> > ability to check if all the symbols present (and fail if some symbols
> > are not resolved), treat archives in