0
votes
1answer
60 views
Sun C++ Compilers and Boost
I am currently developing on OpenSolaris 2009-06. The Boost::MPL Documentation seems to suggest that sun compilers are not supported (the document was last updated in 2004 ). Boost's top level …
3
votes
7answers
432 views
Question about storing array in a std::vector in C++
I am unclear about the following.
First, this code compiles fine:
#include <vector>
typedef struct{
int x1,x2,x3,x4;
} ints;
typedef std::vector<ints> vec;
int main(){
vec v;
ints …
0
votes
1answer
26 views
Shift Reduce Conflict
import java_cup.runtime.*;
import java.io.*;
import java.util.*;
/* Preliminaries to set up and use the scanner. */
parser code {:
SMPLLexer lexer;
public SMPLParser (SMPLLexer lex) {
…
1
vote
2answers
69 views
Java compiler error. Cannot find symbol
Why am I getting this error when the SystemController class is in the same directory?
sgs$ javac Main.java
Main.java:27: cannot find symbol
symbol : class SystemController
location: class sgs.Main
…
1
vote
5answers
2k views
Compile Error CS0433 on pre-compiled ASP.NET 2.0 site.
I keep getting this error ever so often when I launch the debugger to debug my site. I'm using the Telerik controls, and usually the error is in my tab strip. Here is an example of the error I'm …
0
votes
1answer
22 views
C# compiler options - embedding manifest file
Hi,
I have found that it is possible to embedd manifest file (added to resources) with Compiler option /win32manifest. I am trying to find compiler options in VS express but I cannot see it. Could you …
3
votes
4answers
198 views
Does my C++ compiler optimize my code?
While using modern C++ compilers (including MSVC, GCC, ICC), how can I say if it has:
parallelized the code
vectorized the loops (or used other specific processor instructions)
unrolled the loops
…
3
votes
4answers
151 views
Compilers targeting .pyc files?
Out of curiosity, are there many compilers out there which target .pyc files?
After a bit of Googling, the only two I can find are:
unholy: why_'s Ruby-to-pyc compiler
Python: The PSF's Python to …
1
vote
3answers
262 views
Possible to build a shared library with static link used library?
I can build a executable with gcc with static link:
gcc -static xxx.c -o xxx
So I can run xxx without any external dependent library.
But what if I want to build shared library without externel …
-1
votes
3answers
150 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
6answers
185 views
How can I make a Java compiler? [closed]
I want to make a Java compiler for compilation and execution of all kinds of java programs.
3
votes
6answers
731 views
Maximum Method Name Length
Does anyone happen to know what the maximum length of a method name is in your programming language of choice? I was going to make this a C# specific question, but I think it would be nice to know …
0
votes
4answers
127 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 …
8
votes
10answers
491 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
15 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 …
