Gabriel Kerneis

Results 35 comments of Gabriel Kerneis

After some Googling, note that adding AUTOINCREMENT would ensure the correctness of this assumption (but I'm not saying you should use it, it has other drawbacks): https://www.sqlite.org/autoinc.html

Oh no sorry, I'm confused. The issue here is with `select`, not `insert`.

Your files are truncated before the line causing the error. Could you send them to me by email? Thanks.

On Wed, Sep 04, 2013 at 06:52:05PM -0700, Charlie Shepherd wrote: > /home/cs648/qemu/tcg/tcg.c:2547:61: error: ‘img’ undeclared here (not in a function) > .e_ident[EI_MAG2] = ELFMAG2, > ^ > make: **\*...

On Thu, Sep 05, 2013 at 04:37:22PM -0700, Charlie Shepherd wrote: > I thought we had to disable --noMakeStaticGlobal because it caused a different error? That's correct, thanks for the...

On Thu, Sep 05, 2013 at 04:37:22PM -0700, Charlie Shepherd wrote: > I thought we had to disable --noMakeStaticGlobal because it caused a > different error? In fact, no, I...

With OCaml 4.01.0, I get tons of warnings from GCC but compilation does finish successfully. Did you try compiling the latest git snapshot from develop branch? Your /tmp/cpc-0.9.1 seems to...

> Interesting. Yeah, it would be nice if you could do that. Ill have a > look on how I can do this myself too. Unfortunately, it's going to be...

> FILE CHANGES > - M ocamlutil/util.ml (32) > - M ocamlutil/util.mli (17) I don't think those changes are necessary to fix compilation.

Copy/pasting regression case for future reference: ``` C typedef void __attribute__((cps)) CoroutineEntry(void *opaque); struct st { CoroutineEntry *f; void *n; }; void __attribute__((cps)) g(struct st *s) { s->f(s->n); } ```