-
I'm trying to compile DECAF on my i686 Ubuntu 14.04 machine, and am facing some compiler issues.
In particular, I am getting the following error:
```
In file included from DECAF/decaf/softmmu_t…
-
Followed build guide, for Linux, up to the last item `make` and got this `make: *** No targets specified and no makefile found. Stop.`
Likely, my lack of understanding, but not the expected behavi…
-
The Java Decaf compiler preprocesses some Java Decaf code to produce Java code, then invokes the Java compiler to compile that code and produce bytecode.
If there are errors in the Java Code, they a…
-
My current command-line interface ([`Compiler.scala`](https://github.com/hawkw/decaf/blob/master/src/main/scala/decaf/Compiler.scala)) works, but is pretty basic. If we want to add compiler features o…
hawkw updated
9 years ago
-
**Summary of the problem:**
When the Java Decaf compiler encounters an invalid operator, it ignores it instead of producing an error.
**What do you see?**
Code like
```
String str = readLine();
…
-
Java does not have an exponentiation operator, but it would be nice to have it in Java Decaf to make writing mathematical programs a bit less cumbersome.
For example, the JavaDecaf compiler may take…
-
I never managed to finish a build successfully. After [battling one issue after another](https://build.opensuse.org/package/show/home:X0F:branches:Emulators/decaf-emu), it came down with shower of err…
v-fox updated
3 years ago
-
Missing feature!
Template strings like this:
``` coffeescript
bom = 'yoyoyo #{dwq}'
```
should transpile to
``` javascript
bom = `yoyoyo ${dwq}`;
```
-
ES6 and / or TypeScript mostly makes CoffeeScript no longer necessary. Let's try running codebase through `decaffeinate`.
https://github.com/decaffeinate/decaffeinate
-
Trying to compile 5.1.58 using mbedtls-3.2.1. Cmake is configured as;
` BcUnit_DIR /usr/share/BCunit/cmake
CMAKE_BUILD_TYPE RELEASE
CMAKE_INSTALL_PREFIX …