compile

Emacs: Navigating to compile error

I'm setting up emacs as my ruby development environment. I run tests by doing M-x compile and then rake test. I've set up compile-error-regexp-alist appropriately so that the resulting compile buffer can recognize test failures and make them clickable, but I'm facing trouble getting compile-find-file to use the correct directory to find ...

Problems installing MySQL-python-1.2.3c1 on Mac Snow Leopard

Hi All I am having a problem installing the Python MySQL connector (MySQL-python-1.2.3c1) on my Mac OSX Snow Leopard. System State I have manually compiled an installed: mysql-5.1.41 This seems to work fine, as I can create and query a database from the commandline. I have compiled: MySQL-python-1.2.3c1 I first set the following in ...

Add Jar File to Buildpath in Windows Command Line

Hi Im quite annoyed at having to ask this but I cant get it to work. Currently I have a project with: 5 Classes in the src/ folder 2 JARS named profiles.jar and classifier.jar in the root folder I want to create a "makefile?" or "batch file?" to compile and run these classes FROM THE WINDOWS COMMAND LINE, but first add the ...

Compile jruby "Hello world" problem

I have been programming for a while with Ruby and I really enjoy it. Lately I started having the need of compiling some ruby code. For several reasons using Ruby2exe is not an option for me. So I decided to give Jruby a try (generating a jar would be good enough). I am using windows and I installed java JDK 6u17 (at C:\Program Files\Jav...

Which editor/IDE should I use for Python?

Possible Duplicate: What IDE to use for Python I have Notepad++ and NetBeans 6.8, however I don't know if they work. I know you can edit Python with Notepad++ and compile/run it using the command line thing, but I'm not really sure how. I know NetBeans is a full-featured IDE and you can compile Java programs, but I don't think t...

Tools to diagnose slow compile/build reasons

In a number of situations as a programmer, I've found that my compile times are slower than I would like, and I want to understand the reason and fix them. Particular language (yes, I'm using C/C++) tricks have already been discussed, and we apply many of them. I've also seen this question and realize it's related. What I'm more interes...

Basics of Haskell compiling

I'm working on the 2nd Euler's problem, but for now I'm just trying to define the Fibonacci sequence. Currently, I have my Fib function defined as Fib 0 = 0 Fib 1 = 1 Fib x = Fib (x - 1) + Fib (x - 2) Because I want the program to depend on my keyboard input, I used main = do putStrLn "Enter desired Fibonacci index: " ...

Flash compile error

hey everyone, i am creating a web site and when i compiled my flash code so it writing that TypeError: Error #1009: Cannot access a property or method of a null object reference. at gallery_fla::MainTimeline/frame1() I dunno what is wrong, please help my with my problem. thanks for your reply. This is code from first fram...

Trying to compile code from OS Dev tutorial

This is a hard question to ask because I'm positive I'm about to be bombarded with haters commenting on "if I can't write an operating system already, I won't ever to be able to write an operating system". Well I've read Modern OS by Tanembaum, Linux Kernel Development, Understanding the Linux kernel and others I still don't know if or n...

Is it possible to compile a program written in Python?

I am new to the Python programming language. I was wondering if it is possible to compile a program written in Python. ...

Compiling xboxdrv on openSUSE 11.2

I'm trying to use an xbox360 controller as a joystick in openSUSE 11.2. When attempting to compile xboxdrv (http://pingus.seul.org/~grumbel/xboxdrv/) I get the following errors: g++ -o src/xbox_controller.o -c -g -O2 -Wall -ansi -pedantic src/xbox_controller.cpp In file included from src/xbox_controller.hpp:23, from src...

Searching for an Program that controls other Programs

Hello, I'm using ubuntu (and WindowsXP as Virtual mashine on it). I need an automatic process: I want my computer to do every hour a SVN Update and after that my Visual Studio 2008 should open the Projekt.sln File and run the Compilation Process (It's a Windows Program I want to compile, that's why I have to use Windows). For the Compila...

Different outputs after debugging and compiling C++ programs

I'm running CodeBlocks on the MingW compiler in an XP virtual machine. I wrote in some simple code, accessible at cl1p , which answers the algorithm question at CodeChef (Well it only answers it partly, as I have not yet included the loop for multiple test cases. However, my problem is, that while running it in debug mode, it gives the ...

How to compile .sln with cmd.exe

I tried to compile a .sln at windows cmd.exe with the following code: C:\absolutePath\devenv.com /Build /ProjectConfig "Release|Win32" I get following error message: Missing switch argument. Configuration name required for /Build switch. However, this works: C:\absolutePath\devenv.com /Build Release /ProjectConfig "Release|Win3...

cygwin programming

how do you compile java progrmas in cygwin? ...

Cross-platform compiling of a Qt application

I have written a C++ application that uses the Qt framework. I would like to make this application available on different platforms. Since I use Linux, I have no problems compiling the code for Linux. The questions is: Can I compile my code in such a way that it will run on Windows, Mac, etc.? As said above, I'm working on a Linux mach...

Deploy Qt+Boost application on a Mac and Windows.

How to deploy Qt+Boost Application on Mac OS X or Windows platform. I use Qt Creator + Qt 4.6 + MacOS 10.6 How to compile my application into release to run it on another computer w/o installed Qt libraries? ...

Compile forms with included header files

I'm trying to compile a module from forms, with included header files. First, if I have the module in a source file, everything works fine. user.hrl -record(user, {name :: string()}). zed.erl -module(zed). -export([f/1]). -include("user.hrl"). f(User) -> User#user.name. shell 1> compile:file(zed, [return]). {ok,zed,[]} 2> rr...

Delphi Compile and Build produce different binary on same project

Hi there. In a fresh VCL application Compile and Build operation produce same binary and map file (with minor differences at the end of .exe file even if "include version information in project" option is switched off - already discussed). Map file is same bite to bite. But wen I add any third-party component the binary and map(!) fil...

Executing a Number of Classes Java

Hi Currently I have a folder with 6 classes. The main class being called "Interaction". I compile all the classes by using javac *.java How do I run the program? When I type "java Interaction" I get errors as the other classes are not being loaded. Its as if I need to link the other 4 classes into the main class. How do I do this? Im...