active questions tagged compiler - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T03:15:50Zhttp://stackoverflow.com/feeds/tag/compilerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1344830/possible-to-build-a-shared-library-with-static-link-used-library1Possible to build a shared library with static link used library?arsane2009-08-28T03:06:52Z2009-11-28T01:05:24Z
<p>I can build a executable with gcc with static link:</p>
<blockquote>
<p>gcc -static xxx.c -o xxx</p>
</blockquote>
<p>So I can run xxx without any external dependent library.</p>
<p>But what if I want to build shared library without externel dependent library? which I mean I want
the shared library statically linked its externel reference in.</p>
http://stackoverflow.com/questions/1801449/serious-bug-of-visual-c-6-0-2003-compiler-1Serious bug of Visual C++ 6.0/2003 compiler [closed]dwing2009-11-26T03:56:39Z2009-11-27T21:16:19Z
<p>// compile it with /O2 (release version), it will output "impossible!!!"</p>
<pre><code> #include <stdio.h>
int main()
{
static const int T[1] = {0};
int n = 0;
for(int i = 536000000; i < 536000004; ++i)
{
if(i < 0) { printf("impossible!!!\n"); break; }
if(i >= 0 && i < 1) n += T[i];
}
printf("end\n");
getchar();
return n;
}
</code></pre>
http://stackoverflow.com/questions/1654202/how-can-i-make-a-java-compiler1How can I make a Java compiler? [closed]Sumeshsankar.S2009-10-31T12:11:13Z2009-11-27T20:30:38Z
<p>I want to make a Java compiler for compilation and execution of all kinds of java programs.</p>
http://stackoverflow.com/questions/425988/maximum-method-name-length3Maximum Method Name LengthJosh2009-01-08T21:15:33Z2009-11-27T14:42:50Z
<p>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 across the spectrum.</p>
<p>What are the factors involved as well:</p>
<ul>
<li>Does the language specification limit this?</li>
<li>What does the compiler limit it to?
<ul>
<li>Is it different on 32bit vs 64bit machines?</li>
</ul></li>
</ul>
http://stackoverflow.com/questions/1778655/how-to-get-gcc-o1-optimization-without-specifying-o10How to get gcc -O1 optimization without specifying -O1Phenom2009-11-22T13:11:28Z2009-11-27T09:54:05Z
<p>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 flags that -O1 turns on.</p>
<p>I tried</p>
<pre><code>-fthread-jumps -fcprop-registers -fguess-branch-probability
</code></pre>
<p>but it still does not do -O1 optimization. I can tell when I use gprof because the performance is not as good.</p>
<p>Which flags do I turn on to get -O1 optimization?</p>
http://stackoverflow.com/questions/1805148/why-is-pythonruby-interpreted8Why is (python|ruby) interpreted?TG1032009-11-26T18:47:29Z2009-11-26T23:55:36Z
<p>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 domain to make these languages not be interpreted like they are today, and we would see significant performance gains. So certainly I am missing something. </p>
http://stackoverflow.com/questions/1803502/any-way-to-get-ms-vc-to-abort-after-having-x-errors0Any way to get MS VC++ to abort after having x errorsstevebrain2009-11-26T12:48:53Z2009-11-26T23:36:41Z
<p>Hi, </p>
<p>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. </p>
<p>For example an error in one header causes 100's of errors in the program but it can take a few minutes for the compilation to stop. </p>
<p>I know I can cancel it manually, but was wondering if I could get the compiler to go, you have had 20 errors, the compile is not going to work I give up?</p>
<p>Cheers</p>
http://stackoverflow.com/questions/1087983/definition-of-fix-up2Definition of fix-up?skypher2009-07-06T16:42:47Z2009-11-26T22:43:59Z
<p>I've seen this term in the Python Lisp compiler and some C linker's sources.</p>
<p>My guess is that a fix-up is just some wrapper around an Assembly routine that makes sure the alignment is right, but I'm not sure at all about anything here.</p>
http://stackoverflow.com/questions/960305/work-around-for-c-codedom-causing-stack-overflow-cs1647-in-csc-exe3Work-around for C# CodeDom causing stack-overflow (CS1647) in csc.exe?McKAMEY2009-06-06T19:01:22Z2009-11-26T16:34:34Z
<p>I've got a situation where I need to generate a class with a large string const. Code outside of my control causes my generated CodeDom tree to be emitted to C# source and then later compiled as part of a larger Assembly.</p>
<p>Unfortunately, I've run into a situation whereby if the length of this string exceeds 335440 chars in Win2K8 x64 (926240 in Win2K3 x86), the C# compiler exits with a fatal error:</p>
<blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/92855ayd.aspx" rel="nofollow">fatal error CS1647: An expression is too long or complex to compile near 'int'</a></p>
</blockquote>
<p>MSDN says CS1647 is "a stack overflow in the compiler" (no pun intended!). Looking more closely I've determined that the CodeDom "nicely" wraps my string const at 80 chars.This causes the compiler to concatenate over 4193 string chunks which apparently is the stack depth of the C# compiler in x64 NetFx. CSC.exe must internally recursively evaluate this expression to "rehydrate" my single string.</p>
<p>My initial question is this: "<strong>does anyone know of a work-around to change how the code generator emits strings?</strong>" I cannot control the fact that the external system uses C# source as an intermediate and I want this to be a constant (rather than a runtime concatenation of strings).</p>
<p>Alternatively, <strong>how can I formulate this expression such that after a certain number of chars, I am still able to create a constant but it is composed of multiple <em>large</em> chunks?</strong></p>
<p>Full repro is here:</p>
<pre><code>// this string breaks CSC: 335440 is Win2K8 x64 max, 926240 is Win2K3 x86 max
string HugeString = new String('X', 926300);
CodeDomProvider provider = CodeDomProvider.CreateProvider("C#");
CodeCompileUnit code = new CodeCompileUnit();
// namespace Foo {}
CodeNamespace ns = new CodeNamespace("Foo");
code.Namespaces.Add(ns);
// public class Bar {}
CodeTypeDeclaration type = new CodeTypeDeclaration();
type.IsClass = true;
type.Name = "Bar";
type.Attributes = MemberAttributes.Public;
ns.Types.Add(type);
// public const string HugeString = "XXXX...";
CodeMemberField field = new CodeMemberField();
field.Name = "HugeString";
field.Type = new CodeTypeReference(typeof(String));
field.Attributes = MemberAttributes.Public|MemberAttributes.Const;
field.InitExpression = new CodePrimitiveExpression(HugeString);
type.Members.Add(field);
// generate class file
using (TextWriter writer = File.CreateText("FooBar.cs"))
{
provider.GenerateCodeFromCompileUnit(code, writer, new CodeGeneratorOptions());
}
// compile class file
CompilerResults results = provider.CompileAssemblyFromFile(new CompilerParameters(), "FooBar.cs");
// output reults
foreach (string msg in results.Output)
{
Console.WriteLine(msg);
}
// output errors
foreach (CompilerError error in results.Errors)
{
Console.WriteLine(error);
}
</code></pre>
http://stackoverflow.com/questions/461099/general-purpose-language-to-build-a-compiler-for4General Purpose Language to build a compiler forBrownie2009-01-20T12:29:03Z2009-11-26T15:05:03Z
<p>Inspired by Eric Sink's interview on the stackoverflow podcast I would like to build a full compiler in my spare time for the learning experience. My initial thought was to build a C compiler but I'm not sure whether it would take too much time.</p>
<p>I am wondering if there is a smaller general purpose language that would be more appropriate to implement as a first compiler effort? Or is a C implementation doable on a reasonable timescale (200 hrs)?</p>
<p>It is my intention to target the CLR. </p>
http://stackoverflow.com/questions/1802472/compile-only-the-current-project-without-checking-referenced-projects0Compile only the current project without checking referenced projectsJan Zich2009-11-26T09:09:38Z2009-11-26T09:39:47Z
<p>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, but currently I happen to spend most of my time working actively only with the top level project (it's an ASP.NET application referencing a number of libraries), and the referenced libraries are sitting there and don't need to be checked every time.</p>
<p>When I do a full rebuild, it takes about 15 seconds (on a warmed up machine). When I make a change in the ASP.NET project, Visual Studio spends about 10 seconds just checking the referenced libraries.</p>
<p>Is there a way to "tell" Visual Studio: "Please believe me, I know the referenced libraries are there, don’t check them"? in which case I would be fine with getting compilation errors in case my assumption was wrong.</p>
<p>Note: I suspect that C/C++ developers could be amused by this because they usually measure compilation times in minutes and often in hours. On the other hand, in C/C++ one can compile only a single file.</p>
http://stackoverflow.com/questions/1801894/dynamic-languages-vs-static-languages-can-this-two-be-together-in-the-same-place0Dynamic languages Vs Static languages (can this two be together in the same place)Ayoub2009-11-26T06:31:48Z2009-11-26T07:34:38Z
<p>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 static at the same time ? </p>
http://stackoverflow.com/questions/1744144/adding-ifndef-define-endif-breaks-the-compile0adding #ifndef #define #endif breaks the compileyan bellavance2009-11-16T19:01:01Z2009-11-25T20:53:17Z
<p>I added a #ifndef to a file of my project and the compile fails in this case. As soon as I remove it or put any other name in the define it compiles fine. What could be the problem. Sounds like the file is already declared but I do not know where. Im fine just removing it but I really want to know why it is doing this.</p>
<p>error: expected class-name before ‘{’ token
error: ‘QDesignerFormEditorInterface’ has not been declared</p>
<p>and a couple of other errors</p>
<p>I am actually using an example from Qt :"Custom Widget Plugin Example"</p>
<p>The difference is I am using my own class for the custom widget(.h, .cpp and .ui file).</p>
<p>link to the project: <a href="http://www.mediafire.com/file/mr4zdtd4vjr/xmitSetup.tar.gz" rel="nofollow">http://www.mediafire.com/file/mr4zdtd4vjr/xmitSetup.tar.gz</a></p>
<p>It might have to do with the file that has 2 includes, though that is how the example did it.</p>
<p>I have just added a link to the files so you can see. Its not much just 2 classes</p>
http://stackoverflow.com/questions/1789322/why-does-my-yacc-program-not-recognize-function-declarations0Why does my yacc program not recognize function declarations?Phenom2009-11-24T10:58:08Z2009-11-25T09:24:55Z
<p>I think my program should be able to recognize the following as a function declaration</p>
<pre><code>int fn(int i) { int n; return; }
</code></pre>
<p>but it doesn't.</p>
<p>Here's the relevant part of my yacc file</p>
<pre><code>program : declaration_list ;
declaration_list : declaration_list declaration | declaration ;
declaration : var_declaration
| fun_declaration
| '$' { printTable();};
var_declaration : type_specifier ID ';' {$2->value = 0; $2->arraysize = 0;};
| type_specifier ID '[' NUM ']' ';' {$2->arraysize = $4;printf("Array size is %d", $2->arraysize);} ;
type_specifier : INT | VOID ;
fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); printf("Parameters: \n", $2->args); } ;
params : param_list | VOID ;
param_list : param_list ',' param
| param ;
param : type_specifier ID | type_specifier ID '[' ']' ;
compound_stmt : '{' local_declarations statement_list '}' {printf("exiting scope\n"); } ;
local_declarations : local_declarations var_declaration
| /* empty */ ;
statement_list : statement_list statement
| /* empty */ ;
statement : expression_stmt
| compound_stmt
| selection_stmt
| iteration_stmt
| return_stmt ;
expression_stmt : expression ';'
| ';' ;
selection_stmt : IF '(' expression ')' statement
| IF '(' expression ')' statement ELSE statement ;
iteration_stmt : WHILE '(' expression ')' statement ;
return_stmt : RETURN ';' | RETURN expression ';' ;
</code></pre>
<p>Why does it not recognize it?</p>
http://stackoverflow.com/questions/1790676/super-constructor-call-in-blackberry-screen-classes1Super constructor call in Blackberry Screen classes.HughOBrien2009-11-24T15:08:03Z2009-11-25T09:16:06Z
<p>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 any class that extends it, am I wrong?</p>
http://stackoverflow.com/questions/1685148/writing-compilers-whats-right-and-whats-wrong8Writing compilers ... what's right and what's wrong?unknown (google)2009-11-06T03:03:32Z2009-11-25T05:05:57Z
<p>Okay, in my quest to figure out the necessary stuff to write a compiler, I've reached a bit of a roadblock. It seems that every technology or tool that I find has some opposition somewhere.</p>
<p>I use Bison and Flex right now but I'm getting the feeling that this method is outdated. Is this true? Is this a good forward-compatible way to proceed with writing a full fledged programming language?</p>
<p>In a sea of different concepts and tools (ANTLR, LL(k), GLR, LALR, LLVM, Flex, Bison) What's the current trend and best practices for writing compilers? Is the dragon book out of date?</p>
http://stackoverflow.com/questions/1504808/are-there-any-libraries-for-loading-and-processing-disassembling-direct3d-shader0Are there any libraries for loading and processing/disassembling Direct3D shader bytecode?jrk2009-10-01T15:56:25Z2009-11-25T02:00:04Z
<p>Are there any libraries for loading and processing/disassembling the Direct3D (10,11) shader bytecode files generated by fxc?</p>
<p>I know that many developers (and hardware vendors) have internal tools to load and process the D3D shader bytecode formats, but since the shader bytecode format is private and binary-only as of D3D10, I wonder whether there are any public resources for working with it.</p>
http://stackoverflow.com/questions/1789741/delphi-64-bit-preview-compiler-available2Delphi 64-bit Preview Compiler available?Stefan Schultze2009-11-24T12:21:03Z2009-11-24T15:56:45Z
<p>Hi, is there a 64-bit preview compiler available, as announced a long time ago? I wasn't able to find anything.</p>
<p>I really need a 64-bit compiler to target the 64-bit versions of Microsoft Office.</p>
http://stackoverflow.com/questions/1789668/where-can-the-source-code-to-the-first-algol-60-compiler-be-found-online0Where can the source code to the _first_ ALGOL 60 compiler be found online?NevilleDNZ2009-11-24T12:09:23Z2009-11-24T12:47:53Z
<p>ALGOL 58 introduced code blocks and was the first language to use BEGIN and END pairs for delimiting them. </p>
<p>ALGOL 60 was sponsored by UNESCO/IFIP and is the first internationally standardised imperative 3GL computer programming languages. </p>
<p>ALGOL 68 introduced "Things like flexible arrays, slices, parallelism, the extensibility features (especially operator identification), and so forth." </p>
<p>The ALGOLs greatly influenced many other languages and became the de-facto way algorithms were described in textbooks and academic works for almost the next 30 years.
Fragments of ALGOL-like syntax are sometimes still used as a notation for algorithms, so-called Pidgin code.</p>
<p>Maybe not as good as finding the <a href="http://en.wikipedia.org/wiki/Ark%5Fof%5Fthe%5FCovenant" rel="nofollow">Ark of the Covenant</a>, but worth an FAQ spot.</p>
http://stackoverflow.com/questions/1787174/how-does-c-handle-multiple-source-files2How does C++ handle multiple source files?cornjuliox2009-11-24T01:05:30Z2009-11-24T01:17:38Z
<p>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 current working directory for the module you're trying to import and then it checks the directories in sys.path. In C++, where would I place a custom made .h file? Where would the compiler even look?</p>
<p>For example, I've got a program, foo.exe compiled from a single source file, foo.cpp, both in the same directory. I decide that I want to organize things a little better, so I create a new .h file, bar.h and dump stuff in there. Would I just need to #include to get to the stuff I put there? What if I want to use bar.h with another program (in a completely different directory)? </p>
http://stackoverflow.com/questions/97987/switch-vs-if-else18Switch vs if-elseZing-2008-09-18T23:28:23Z2009-11-23T13:50:48Z
<p>What's the best practice for switch vs if for a 30 unsigned enumerations where about 10 have an expected action (that presently is the same action). Performance and space need to be considered but are not critical. I've abstracted the snippet so don't hate me for the naming conventions :p</p>
<pre><code>// numError is an error enumeration type, with 0 being the non-error case
// fire_special_event() is a stub method for the shared processing
switch (numError)
{
ERROR_01 : // intentional fall-through
ERROR_07 : // intentional fall-through
ERROR_0A : // intentional fall-through
ERROR_10 : // intentional fall-through
ERROR_15 : // intentional fall-through
ERROR_16 : // intentional fall-through
ERROR_20 :
{
fire_special_event();
}
break;
default:
{
// error codes that require no additional action
}
break;
}
</code></pre>
<p>versus an if statement</p>
<pre><code>if ((ERROR_01 == numError) ||
(ERROR_07 == numError) ||
(ERROR_0A == numError) ||
(ERROR_10 == numError) ||
(ERROR_15 == numError) ||
(ERROR_16 == numError) ||
(ERROR_20 == numError))
{
fire_special_event();
}
</code></pre>
http://stackoverflow.com/questions/1779545/stack-allocation-limit-for-programs-on-a-linux-32-bit-machine0Stack allocation limit for programs on a Linux 32 bit machinemkal2009-11-22T18:38:51Z2009-11-22T23:58:27Z
<p>In C++ how much can the stack segment grow before the compiler gives up and says that it cannot allocate more memory for stack. </p>
<p>Using gcc on a linux (fedora) 32 bit machine.</p>
http://stackoverflow.com/questions/1779924/is-there-a-high-level-language-with-an-interpreter-dynamic-compiler-and-static-c1Is there a high level language with an interpreter, dynamic compiler and static compiler(e.g. like the c++ compiler) along with a multimedia library?Soup2009-11-22T20:39:29Z2009-11-22T22:14:14Z
<p>The interpreter and dynamic compiler would be for testing/prototyping and when im done testing i use the static compiler.</p>
http://stackoverflow.com/questions/771756/what-is-the-difference-between-cygwin-and-mingw16What is the difference between cygwin and mingw?Łukasz Lew2009-04-21T09:16:37Z2009-11-22T15:25:16Z
<p>I want to make my C++ project cross platform, and I'm considering using cygwin/mingw.
But what is the difference between them?
Another question is whether I will be able to run the binary on a system without sygwin/mingw?</p>
http://stackoverflow.com/questions/1778538/how-many-gcc-optimization-levels-are-there2How many GCC optimization levels are there?Phenom2009-11-22T12:13:05Z2009-11-22T14:02:07Z
<p>How many <a href="http://en.wikipedia.org/wiki/GNU%5FCompiler%5FCollection" rel="nofollow">GCC</a> optimization levels are there?</p>
<p>I tried gcc -O1, gcc -O2, gcc -O3, and gcc -O4</p>
<p>If I use a really large number, it won't work.</p>
<p>However, I have tried</p>
<pre><code>gcc -O100
</code></pre>
<p>and it compiled.</p>
<p>How many optimization levels are there?</p>
http://stackoverflow.com/questions/1778698/how-to-turn-off-specific-optimization-flags-in-gcc1How to turn off specific optimization flags in gccPhenom2009-11-22T13:29:59Z2009-11-22T13:31:43Z
<p>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?</p>
http://stackoverflow.com/questions/1777553/g-compilers-for-monodevelop0G++ Compilers for MonoDevelopbobber2052009-11-22T02:05:06Z2009-11-22T02:05:06Z
<p>How do you setup a G++ compiler for MonoDevelop?</p>
<p>On both OS X and Windows Vista the default install complains about "Compiler Not Found: g++".</p>
<p>Is MonoDevelop not a good cross platform IDE for C++ development (since it is a C#/Java IDE).</p>
<p>Thanks SO!</p>
http://stackoverflow.com/questions/1774964/seriously-speeding-up-php5Seriously speeding up PHP?Lee2009-11-21T08:49:28Z2009-11-22T01:45:25Z
<p>I've been writing PHP for years, and have used every framework under the sun, but one thing has always bugged me... and that's that the whole bloody thing has to be interpreted and executed every time someone tells my server they want the page served.</p>
<p>I've experimented with caching, FastCGI, the Zend Job Queue (and symfony plug-ins that do similar - as well as my own DB-based solutions that implement the System_Daemon class to run background processes) and I've managed to make my apps fairly quick using all that stuff... but I can't get over the mental block that my settings files, system/environment check functions, and all the stuff that should only really be loaded ONCE... loads every darn time someone hits my page.</p>
<p><strong>So, my ramble leads to the following Q--</strong></p>
<p>Is there some method/technique for loading certain aspects of PHP into RAM so that when that page is requested, all my settings.yml files, system checks, framework files, cached pages etc can be loaded directly from memory without ever even touching the HD... or needing to go through the same loading mechanism 50,000 times per day to init the program?</p>
<p>If there's nothing in PHP... are there any other 'web' languages that can be compiled in this way, to allow for true init-once apps?</p>
http://stackoverflow.com/questions/1774537/where-do-i-learn-what-i-need-to-know-about-c-compilers2Where do I learn "what I need to know" about C++ compilers?Christopher W. Allen-Poole2009-11-21T04:41:47Z2009-11-21T19:53:52Z
<p>I'm just starting to explore C++, so forgive the newbiness of this question. I also beg your indulgence on how open ended this question is. I think it could be broken down, but I think that this information belongs in the same place.</p>
<p>(FYI -- I am working predominantly with the QT SDK and mingw32-make right now and I seem to have configured them correctly for my machine.)</p>
<p>I knew that there was a lot in the language which is compiler-driven -- I've heard about pre-compiler directives, but it seems like someone would be able to write books the different C++ compilers and their respective parameters. In addition, there are commands which apparently precede make (like qmake, for example (is this something only in QT)).</p>
<p>I would like to know if there is any place which gives me an overview of what compilers are out there, and what their different options are. I'd also like to know how each of them views Makefiles (it seems that there is a difference in syntax between them?).</p>
<p>If there is no website regarding, "Everything you need to know about C++ compilers but were afraid to ask," what would be the best way to go about learning the answers to these questions?</p>
http://stackoverflow.com/questions/1775573/c-program-problem3C++ program problemunknown (yahoo)2009-11-21T14:04:56Z2009-11-21T16:22:07Z
<p>I am new to C++ programming.
So I was trying my luck executing some small programs.
I am working on <a href="http://en.wikipedia.org/wiki/HP-UX" rel="nofollow">HP-UX</a> which has a compiler whose
executable is named <em>aCC</em>.</p>
<p>I am trying to execute a small program</p>
<pre><code>#include <iostream.h>
using namespace std;
class myclass {
public:
int i, j, k;
};
int main()
{
myclass a, b;
a.i = 100;
a.j = 4;
a.k = a.i * a.j;
b.k = 12;
cout << a.k << " " << b.k;
return 0;
}
</code></pre>
<p>When I compile this it gives me an error:</p>
<pre><code> > aCC temp.cpp
Error 697: "temp.cpp", line 2 # Only namespace names are valid here.
using namespace std;
^^^
</code></pre>
<p>What exactly is the problem?
Is <code>std</code> not considered as a namespace in the aCC compiler or is there some serious drawback with aCC?</p>
<p>If I change the <code><iostream.h></code> to <code><iostream></code>, I get some more errors added as below.</p>
<pre><code>>aCC temp.cpp
Error 112: "temp.cpp", line 1 # Include file <iostream> not found.
#include <iostream>
^^^^^^^^^^
Error 697: "temp.cpp", line 2 # Only namespace names are valid here.
using namespace std;
^^^
Error 172: "temp.cpp", line 14 # Undeclared variable 'cout'.
cout << a.k << " " << b.k;
</code></pre>