8
votes
10answers
450 views
Why is (python|ruby) interpreted?
What are the technical reasons why languages like Python and Ruby 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
12 views
Any way to get MS VC++ to abort after having x errors
Hi,
I am compiling dll's that take a long time, i was wondering if you could automatically make MSVC++ abort the compile after a certain number of errors.
For example an error in one header causes …
0
votes
2answers
23 views
Compile only the current project without checking referenced projects
When I hit Compile Project (SHIFT+F6) in Visual Studio 2008, Visual Studio always seems to check the referenced projects/libraries first. It is understandable, because they have to be compiled first, …
0
votes
2answers
35 views
Dynamic languages Vs Static languages (can this two be together in the same place)
programming languages are grouped it 2 main classes "Dynamic" & "Static".
- Is this always the case a programming language is in one of them and not in both, I mean can a language be dynamic and …
-1
votes
3answers
148 views
Serious bug of Visual C++ 6.0/2003 compiler [closed]
// compile it with /O2 (release version), it will output "impossible!!!"
#include <stdio.h>
int main()
{
static const int T[1] = {0};
int n = 0;
…
1
vote
4answers
36 views
Super constructor call in Blackberry Screen classes.
Why is the super() constructor recommended to be called when extending any of the RIM Screen classes? It was my understanding that the no-arg constructor of any super class was implicitly called from …
2
votes
2answers
341 views
Delphi 64-bit Preview Compiler available?
Hi, is there a 64-bit preview compiler available, as announced a long time ago? I wasn't able to find anything.
I really need a 64-bit compiler to target the 64-bit versions of Microsoft Office.
0
votes
1answer
25 views
Where can the source code to the _first_ ALGOL 60 compiler be found online?
ALGOL 58 introduced code blocks and was the first language to use BEGIN and END pairs for delimiting them.
ALGOL 60 was sponsored by UNESCO/IFIP and is the first internationally standardised …
0
votes
4answers
32 views
Why does my yacc program not recognize function declarations?
I think my program should be able to recognize the following as a function declaration
int fn(int i) { int n; return; }
but it doesn't.
Here's the relevant part of my yacc file
program : …
2
votes
6answers
147 views
How does C++ handle multiple source files?
I'm studying C++ right now, coming from a background in Python, and I'm having some trouble understanding how C++ handles multiple source files. In Python, the import statement first checks the …
1
vote
4answers
84 views
Is there a high level language with an interpreter, dynamic compiler and static compiler(e.g. like the c++ compiler) along with a multimedia library?
The interpreter and dynamic compiler would be for testing/prototyping and when im done testing i use the static compiler.
0
votes
3answers
107 views
Stack allocation limit for programs on a Linux 32 bit machine
In C++ how much can the stack segment grow before the compiler gives up and says that it cannot allocate more memory for stack.
Using gcc on a linux (fedora) 32 bit machine.
1
vote
1answer
34 views
How to turn off specific optimization flags in gcc
I want to compile with optimization -O1, but there is a certain flag that it turns on that I do not want to use. How do I turn it off?
0
votes
4answers
125 views
How to get gcc -O1 optimization without specifying -O1
I know that -O1 automatically turns on certain flags. These flags can be turned on manually though. If I don't specify -O1, it should still be possible to get -O1 optimization by specifying all the …
2
votes
4answers
153 views
How many GCC optimization levels are there?
How many GCC optimization levels are there?
I tried gcc -O1, gcc -O2, gcc -O3, and gcc -O4
If I use a really large number, it won't work.
However, I have tried
gcc -O100
and it compiled.
How …
