compile

How to programmatically build a visual studio solution ?

I would like to compile a solution by passing the solution file path (.sln file) and the build mode (debug, release). I do not want to call a command line process like devenv.exe or msbuild.exe, instead I would like to use an API and know if there were compile errors. Is it possible ? Please provide samples if you think you know how to ...

Any python "compiler" that can statically link the python2x.dll dependency?

It's my understanding that py2exe can only dynamically link a python2x.dll file. Are there any Python "compilers" out there that can package it all into one standalone .exe file for easier portability? If so or if not, which is the best compiler z0mg! ...

Can anyone compile ffmpeg under windows for me?

I'm just about getting insane with compiling ffmpeg under windows... It just won't work. I need the avcodec.dll and avformat.dll inclusiv .lib and .h, maybe someone could compile it for me and upload these files, so that I can use it at my own project? ...

Anybody tried to compile "Go" on Windows?, Its seems start supporting to generate PE Format now.

http://code.google.com/r/hectorchu-go-windows/source/list If you could compile it successfully, I like to know the procedures of how to. ...

(c)make - resursive compile

Hello! Let's assume I have directories like: dir1 main.cpp dir2 abc.cpp dir3 def.cpp dir4 ghi.cpp jkl.cpp And let's assume that main.cpp includes dir2/abc.cpp and dir3/def.cpp, def.cpp includes dir4/ghi.cpp and dir4/jkl.cpp. My question is, how can I have one Makefile/CMak...

How can i Compile a C program on Dos prompt using tcc and tc

I want to compile c program on dos prompt using tcc as well as tc without using c editor. please give the full procedure. ...

java in-memory on-the-fly class compilation (and loading)

I want to revisit an old question of mine about in-memory "compilation" of classes. Since about 1/2 a year have passed since I asked (and was somewhat answered), I'd like to re-raise the issue and see if something new would come up (so no, I don't consider this a duplicate). The old question can be found here: http://stackoverflow.com/q...

Erlang compilation - Erlang as stand alone executeable

is there a way to compile Erlang to be a stand-alone executable? this means, to run it as an exe without the Erlang runtime. thanks ...

Compile issues based on different platforms

I'm compiling a solution which runs fine on the PC but when trying to compile it for a different platform I get the following error: "Unhandled Exception: System.ArgumentException: An item with the same key has already been added." Anyone know what it could mean? ...

G++ -I option for compiling program

Hi experts, Here is a little problem that cannot be resolved by me such a Linux program newbie. Now I have a main.cpp program which need to be compiled, there is a #include "Down.h" in the front of file. Actually, this header file exist in the other directory, which locates at ../../../include directory. Besides, some other head...

How do you export your finished application from Xcode?

I feel silly for having to ask this. I've got an application to a point where I want to send someone a beta to test on their machine, but I don't know how to get Xcode to produce a .app file for me to send to them. Help? ...

Error in compiling a Linux kernel

How do you read the errors? I run after having .config -file at /home/aal/build/kernel. /usr/src/linux-2.6$ make O=/home/aal/build/kernel/ I get ... cut ... CC [M] drivers/staging/go7007/s2250-board.o /usr/src/linux-2.6/drivers/staging/go7007/s2250-board.c:24:26: error: s2250-loader.h: No such file or directory /usr/src/linux-2...

Does having more projects in your visual studio increase compile time?

Which scenario below would compile faster? Two projects inside of a solution. Each project has 5 classes. One project inside of a solution. The project has 10 classes (the combination of the two projects in scenario a). Basically, I'm trying to see if having 2 projects would affect the compile time in a solution. ...

c# name or type not found

private void changeFont() { Control.ControlCollection controls = tabControl1.Controls; foreach (Control control in controls) { TabPage t = (TabPage)control; Control c = t.GetChildAtPoint(new Point(250, 250)); System.Type type = typeof(c); //-->1st error ((ty...

Why _mysql.co that compiled on one Mac doesn't work on another?

Hi guys, I want to use Python-MySQLDB library on Mac so I have compiled the source code to get the _mysql.so under Mac10.5 with my Intel iMac (i386) This _mysql.co works in 2 of my iMacs and another Macbook. But that's it, it doesn't work in any other Macs. Does this mean some machine specific info got compiled into the file? ...

Java: edit and recompile .jar?

I downloaded JGraphT, and I want to make some changes to the core files. I'm using Eclipse. It wants a .jar or .zip to attach source files to the .class file. I have the .java file, but I'm not sure what I should do. Do I edit it, then recompile the jar? ...

jQuery code behaves differently in Debug vs. Release mode

I am developing a website where I am using a tabs implementation with jQuery. In Debug mode, all runs fine, I spent the entire day developing it, and when I was about to deploy to the live site and I compiled in 'Release' mode, the tabs don't switch anymore. Why would this code behave differently? I am assuming it's the JavaScript code t...

Why are some java libraries compiled without debugging information

Hi all, I've noticed recently that there's a few java libs (the JDK, joda time, iText) that compile without some/all of the debugging information. Either the local variable info is missing, or the both the local variable info and line numbers are missing. Is there any reason for this? I realise it makes compiled code larger but I don...

Wave Watch 3 Fortran Compile Problem

Hey guys and gals, I'm just setting up the new WW3 and have compiled and run the test case 'ctest' and that works fine. Then when I try and compile and link one of the main programs I get the following error message.. ----compiling WAVEWATCH III---- Scratch Directory : /home/ww3/scratch Save source codes : yes Save listings : yes P...

testing Java code generated during another test

I want to build a "toJavaCode()" on my model that would generated the required Java source code to generate that model (never mind the reasons or if it should or shouldn't be done, nor the compatibility issues that may occur). I'm at a loss at how to test this. I'm using maven, but generate-sources won't really work for me since my serv...