1
vote
6answers
79 views
How can I learn about compiler theory - online/free resources
I'm interested in learning - at depth - about compiler theory...
parsing
EBNF
LALR?
Are all terms I'm familiar with but don't really understand how to actually implement/use..
I'm looking for …
4
votes
5answers
227 views
C++ CPU Register Usage
In C++, local variables are always allocated on the stack. The stack is a part of the allowed memory that your application can occupy. That memory is kept in your RAM (if not swapped out to disk). …
0
votes
0answers
14 views
Why won’t OpenCV compile in NVCC?
Hi there
I am trying to integrate CUDA and openCV in a project. Problem is openCV won't compile when NVCC is used, while a normal c++ project compiles just fine. This seems odd to me, as I thought …
1
vote
2answers
39 views
c statements not recognized in yacc file
On some linux machines when I compile my yacc program it works fine. However, on other machines, I noticed that none of the c statements that are interspersed with the grammar rules are ever …
0
votes
3answers
30 views
Compiling for both Intel and PPC CPUs on OSX
I have a MacBook Pro with a 64-bit Intel Core 2 Duo processor, and I'm using gcc (i686-apple-darwin9-gcc-4.0.1) to compile executables which I can run ok on my own machine. Recently someone tried to …
1
vote
2answers
18 views
Similar syntax causes strange, repeated compile errors when building PHP from source on Windows
I am trying to build PHP from source per these instructions. The configure works really well, but when I get to the nmake part, things fall apart. I have no idea why I am getting errors about …
1
vote
4answers
59 views
Cache java compilation
Is there any posibility to cache java compilation like ccache does for C or C++ compilation?
I have a lot code to compile, and I compile the same code many times, so it took a lot of time. So I …
2
votes
1answer
26 views
Hash tables optimization
Hi
In several hash table implementations I've seen the usage of heuristics like "transpose" or "move to front" for items in a bucket.
What are the advantages of using such heuristics? I could't …
1
vote
2answers
35 views
Preserving the Execution pipeline
Return types are frequently checked for errors. But, the code that will continue to execute may be specified in different ways.
if(!ret)
{
doNoErrorCode();
}
exit(1);
or
if(ret)
{
exit(1);
}
…
1
vote
2answers
50 views
boost::any test code compiles with Sun CC but not g++
The following noddy test code:
#include <iostream>
#include <list>
#include <boost/any.hpp>
#include <boost/foreach.hpp>
#include <typeinfo.h>
using boost::any_cast;
…
3
votes
3answers
113 views
Compiling Twice with Delphi 6 and getting the same checksum on the binary
For the purposes of binary / source code verification, i'd like to be able to make two compiles on the same computer 2 weeks apart and have the binaries be identical and thus pass some checksum test.
…
-3
votes
4answers
173 views
Is compilation possible in F#?
i heard that there is no compilation in f#? means F# language is not converted into byte code?
i know that it is conversation type question .. but i want to know that...?
which is better language to …
3
votes
5answers
217 views
What’s the limit to the number of members you can have in a java enum?
Assuming you have a hypothetical enum in java like this (purely for demonstration purposes, this isn't code i'm seriously expecting to use):
enum Example{
FIRST,
SECOND,
THIRD,
...
…
8
votes
10answers
568 views
Why is (python|ruby) interpreted?
What are the technical reasons why languages like Python and Ruby are interpreted (out of the box) instead of compiled? It seems to me like it should not be too hard for people knowledgeable in this …
0
votes
1answer
18 views
Error in building project
Hi,
While building a c++ project for windows mobile 6.0 , i am getting an error fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'THUMB'
i don't no the reason why …
