The compiler tag has no wiki summary.
1
vote
1answer
55 views
Native build of gcc compiler on windows 7 x64
I'd like to make a native build for the gcc compiler on my Windows 7 X64 laptop. After reading the installation instructions and realizing they were for a Unix system, I decided that it was time to ...
0
votes
0answers
19 views
Case-sensitive error in compiler's building using crosstool-ng under Cygwin
When I try to build gcc cross-compiler using crosstool-ng under Cygwin (running in Windows 7) I have the following message:
$ /opt/ng-crosstool/bin/ct-ng build
[INFO ] Performing some trivial sanity ...
2
votes
1answer
46 views
Use matlab in makefiles etc. How to speed things up?
I use a lot of matlab to process data etc. Yet I find my workflow a bit of sluggish, so I was wondering if I could speed things up a little using makefiles.
What I would like to do is write an .m ...
2
votes
2answers
115 views
Portable C compiler for Windows on USB stick
I am looking for a portable C compiler to run from an USB stick on Windows (XP or higher).
If it's a GCC portable version, that's a plus. If it's also (optionally) a C++ compiler, that's a plus too.
...
0
votes
0answers
136 views
Error installing RObot Operating system onto OS X Lion
The system has been using Macports. I configured the system exactly as per the line by line instructions of this guidelines. In the process I got the following error. The only change that I made from ...
0
votes
0answers
168 views
How to install LessCss compiler on Ubuntu 11.04
I am trying to install LessCss compiler on Ubuntu 11.04.
Following the author's instructions:
npm install less
I end up with this warning:
[WARNING] Out of OEM specific VK codes, changing to ...
0
votes
0answers
13 views
GMD compiler toolbox CCTB
What is a "GMD compiler toolbox CCTB"? It is required for the "VHDL parser vhdl-rexlalr.1.2 from the University of Twente" (see the link below). I can't find it.
...
0
votes
1answer
198 views
libssh2.so.1cannot open shared object file?
I am trying to run medusa program when I have run it with command medusa -d I got
+ cvs.mod : Couldn't load "/usr/local/lib/medusa/modules/cvs.mod" [libssh2.so.1: cannot open shared object file: No ...
0
votes
1answer
59 views
How To Schedule .NET Framework Compilation?
Sometimes i find it annoying for .NET Framework start compilation of files without my authorization. I read somewhere that i can execute compilation when i want or maybe even schedule it. At least i ...
3
votes
2answers
215 views
Force specific CPU core usage in programs on Windows 7
Is there any way to force a program to run on cpu1 rather than cpu0 given that I know that there are at least two cores?
I'm compiling C++ with code::blocks on Windows 7 x64
2
votes
1answer
483 views
Xcode installed, but gcc/ g++ compilers are not found
I thought Xcode would come with these compilers. Can i download them manually? Where do i find them?
1
vote
1answer
192 views
Add GCC into Netbeans
I want to make programs in Netbeans (C++ language), but Netbeans doesn't detect C++ libraries and compiler.
How can I add GCC into Netbeans?
2
votes
1answer
334 views
Scala compiler _incredibly_ slow on Mac OS X 10.6
I recently tried to install scala and the Scala IDE plugin for Eclipse. Everything's working fine, except for that it takes over 5 seconds to compile a simple hello world program. At first I thought ...
0
votes
2answers
78 views
What library does the arg “-lphp5” refer to for GCC?
Where can I get the library -lphp5 refers to? Is it a part of a metapackage for YUM? Can I find the source somewhere? I'm having some configuration issues with PHC and this seems to be at the root ...
1
vote
5answers
4k views
Unix - Online Shell Script Editor and Compiler
For writing shell script and then compile it, i generally load Linux/Knoppix(unix) in my Windows based PC, So i am really tired to load the entire OS each and every time.
As there are many ...
0
votes
1answer
270 views
Mac OS X: Trying to install prolog using fink
I am trying to install prolog on Mac OS X 10.4.11.
I just downloaded fink because I think that that should help me and I am trying to get either:
Package swi-prolog-5.8.1-2
or
Package ...
1
vote
1answer
188 views
Prolog for the Mac
For one of my classes I need to write several prolog programs. Can someone suggest a mac friendly prolog compiler? I tried gnu prolog but when it doesn't work for me.
0
votes
1answer
288 views
Installing GNU Prolog on Mac OS X (getting a Bus Error)
Just installed gnu prolog on Mac OS X 10.4 but it is not working. When I go:
% ./gprolog
Bus error
Anyone have any ideas?
4
votes
2answers
10k views
Where do I find nmake for Windows 7
I'm trying to compile a Perl source and I can't seem to find a version of nmake that works with Windows 7 64 bit. I've searched all over Microsoft's website and my Googlefu seems to be failing me. Can ...
2
votes
3answers
496 views
What language are compilers written with?
Are compilers written in different languages than the language they compile?
6
votes
1answer
611 views
How was the first compiler compiled?
This has always racked my brain. Compilers compile code. I imagine that the compiler is coded. So to actually run the code for a compiler, you'd have to compile it.
How was the first compiler ...
1
vote
1answer
664 views
Xeon X3220 Dual-Core 2.4 GHz - which march setting for gcc?
Should I use -march=nocona or -march=core2 when compiling binaries for this processor with gcc 4.3?
vendor_id : GenuineIntel
cpu family : 6
model : 15
model name : Intel(R) ...
7
votes
4answers
3k views
Detect compiler used for EXE file
Is there any way to detect (or to hide) the compiler that was used to build an executable file?
3
votes
2answers
102 views
Is it usually necessary to do make and then make install?
This is something that has always bugged me. It seems like I always see build instructions for building and then installing something saying to do this:
make
sudo make install
Is there really any ...
0
votes
1answer
70 views
How do I determine the target HArdware platform that my compiler is compiling for?
I have a centOS 5.3 box with intel Xeon processors. A friend of mine was looking around and said my binaries are being compiled with an AMD target. Doesn't ./configure (like when building apache) ...
2
votes
2answers
69 views
Can you skip the “checking..” steps when running ./configure?
$ ./configure
configure: configuring for GNU Wget 1.11
checking build system type... i686-apple-darwin10.0.0
checking host system type... i686-apple-darwin10.0.0
checking whether make sets ...
3
votes
7answers
406 views