3
votes
4answers
97 views
Binary compatibility between Linux distributions
Sorry if this is an obvious question, but I've found surprisingly few references on the web ...
I'm working with an API written in C by one of our business partners and supplied …
3
votes
1answer
92 views
how to implement objects for toy language ?
I am trying to make a toy language in c++. I have used boost spirit for the grammar, and hopefully for parser/lexer. The idea is a toy language where 'everything is an object' like …
6
votes
4answers
152 views
Is there a Java program snippet which can compile at Java level 5 but not level 6?
I want to have a source file which can compile with javac / ecj set to Java 5 but not Java 6 (even if the underlying Java runtime is Java 6).
This is to be certain that the compil …
2
votes
5answers
99 views
Is compiler allowed to ignore inline in case of template specialization?
Hello everybody.
Lets say you have simple template function (not class member for the sake of simplicity) with type specific specialization in the same .h file...
template <cla …
4
votes
4answers
95 views
Does GCC’s __attribute__((__packed__))…?
Purpose
I am writing a network program in C (specifically gnu89) and I would like to simplify things by reinterpreting a certain struct X as big array of bytes (a.k.a. char), send …
5
votes
20answers
688 views
A language that doesn’t use ‘C’ ?
Just curious. I may be wrong, but as far as I know, most languages are created using 'C' sources.
For example: perl , php , python, java(?), go ...
Is there any language that d …
2
votes
3answers
98 views
C: warns about implicit long to int conversion
Hi,
I was wondering whether there is a way to tell the compiler (I'm on gcc version 4.1.2 20080704 (Red Hat 4.1.2-46) or icc 11.1) to throw a warning whenever a long-to-int implic …
0
votes
4answers
49 views
Simple read vs write boolean variable performance comparison question
What should be the preferred way by programmers:
1) Only Write:
SomeBoolean = True
2) Read but write only if necessary
If Not SomeBoolean Then SomeBoolean = True
4
votes
10answers
500 views
Are there C/C++ compilers that do not require standard library includes?
All applicants to our company must pass a simple quiz using C as part of early screening process.
It consists of a C source file that must be modified to provide the desired fun …
0
votes
1answer
15 views
How to use the -MG flag in cc 4.4.1?
I've recently upgraded my Ubuntu installation from Jaunty to Karmic. This apparently includes an update of the GNU C compiler, because code that compiled previously no longer does. …
0
votes
2answers
33 views
Reordering and Interleaving of Code
Are reordering and interleaving interchangeable terms when it comes to code compilation, optimization and execution?
4
votes
3answers
189 views
[C++] Validity of int * array = new int [size]();
int * array = new int [size]();
The operator () allow to set all values of array to 0 (all bits to 0). it's called value-initialization.
Since which version of g++ is it valid …
3
votes
5answers
240 views
Anyone here has benchmarked Intel C++ compiler and GCC?
I am not sure whether I should post this question here, because this seems to be a programming-oriented website.
Anyway, I think there must be some gurus here who knows this.
Now …
3
votes
4answers
114 views
How do modern optimizing compilers determine when to optimize?
How do modern optimizing compilers determine when to apply certain optimizations such as loop unrolling and code inlining?
Since both of these affect caching, naively inlining fun …
1
vote
1answer
21 views
Stop and continue while evaluation an expression tree
At the office, we've applied simple Domain Specific Languages (DSLs) to several problem domains we encountered.
Basically, we parse (lex/yacc) the custom script into an expressio …
