|
Any existing Flash SWF compilers that can understand directives like #IF #ENDIF , etc?
Some SWF Compilers: (Hopefuls)
AS3 Compiler - haXe AS2 Compiler - MTASC Adobe Flex Compiler - Mxmlc C# to SWF Compiler - Debreuil
Started by Jeremy Rudd on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
The MXMLC compiler also supports conditional compilation, though it is pretty.
What you want.
|
|
Compilers like all software, would also be prone to bugs, logical errors.
How does one validate the output generated by the compiler. Typically, my question is(are)
How to validate that the machine code generated is correct?
How to ensure that the machine...
Started by Aditya Sehgal on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It verifies that the ....
It consists of a large set of C code specifically written to test against the language standard .
We've had some luck using the Plum Hall test suite for a C compiler.
There are several compiler test suites out there.
|
|
Hello I want to build a project with intel compiler.
With default gcc I usually run:
cmake -DCMAKE_CXX_FLAGS=-I/some/path /path/to/project
And this works fine.
cmake -DCMAKE_CXX_COMPILER=icpc -DCMAKE_C_COMPILER=icc -DCMAKE_CXX_FLAGS=-I/some/path /path...
Started by Artyom on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
The CMakeLists.txt file, but what about editing it allowing the user to select the compiler -- something like
SET(MYVAR TRUE CACHE BOOL "Use intel compiler?")
And later on, if MYVAR variable is set, do the specific compiler include....
|
Ask your Facebook Friends
|
Everything I've read seems to imply that building a cross-compiler is significantly harder than building a compiler that targets the platform it runs on. Is this true? If so, why? It seems like generating assembly code and system calls for an arbitrary...
Started by dsimcha on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
Non-cross) compiler, you....
For the 'native' (i.e.
Is it possible that you're looking at a specific case like 'building GCC as a cross compiler surrounding libraries - for the cross-compiler you need libraries for the target platform.
|
|
Does anyone know of online course / university lectures that comprise a typical compiler course? I've had theory of computing but unfortunately my school didn't offer a course in compiler construction.
I know there are lectures out there; I was hoping...
Started by larryq on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Most compiler courses teach one phase of the compiler at a time is it is difficult to understand how the whole compiler fits together and why each phase is designed the way.
To Intel x86 assembly language.
|
|
If yes.. then which compiler is best for compiling them?
Started by vaibhav on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I work in a place where a colleague (not myself) uses a Borland compiler on 386 vintage computers.
|
|
I'm looking for a parser generator that given an EBNF for a LL(k) language will give me a C# parser and generate classes the types defined in the EBNF.
Started by SpaceghostAli on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
ANTLR (nothing else to say)
Gold is OK as far a parser generators go. .
Another possibility is Spart.
You might want to look at MinosseCC , a port of JavaCC to C# .
|
|
I want my code to compile with the Intel compiler(s) or with gcc/g++ depending on a configure argument. Is this possible? What do I need to put in my configure.ac and Makefile.am files to make this happen?
Started by David Hollman on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
You'll find more about it here:
#if a compiler is not specified....
You can configure a default compiler in configure.ac and if the user wants to use another compiler, he (or she) can pass it to the ./configure script.
Of course it is.
|
|
I got this error message from the C++ compiler:
CC: Fatal error in ccfe: Segmentation Fault (core dumped)
What could cause it?
Answer Snippets (Read the full thread at stackoverflow):
Since the compiler is heavily recursive, this limit.
My user stack limit was very low (1MB).
|
|
Has anyone compiled jQuery against Google's newly-released Closure compiler?
There has been reported huge savings in code size. I'm curious what the benefit is if jQuery was compiled with it.
Started by Ted on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://code.google.com/p/closure-compiler....
JQuery 1.3.2
jQuery-1.3.2.min.js 57254 Bytes jQuery closure compiler 49730 Bytes Reduced by 7524 Bytes compiled with Closure Compiler without making sure it passes the jQuery testbed.
|