build-process

How to register a new LLVM backend?

I'm developing a very basic new LLVM backend for a RISC machine (named Risco), based on the existing Sparc backend and this tutorial. To register the backend, I've used the following. At RiscoTargetMachine.cpp: extern "C" void LLVMInitializeRiscoTarget() { // Register the target. RegisterTargetMachine<RiscoSimulatorTargetMachi...

Maven + Mercurial for Build Numbers

I can't figure out how to get a Mercurial revision id put into my Maven build (ideally I would like it in the MANIFEST of my jars and war). The closest solution I could find is: mvn -DbuildNumber=`hg id -i` Which won't really work for Windows or my Hudson server. Luckily Hudson tags my builds but I would like some more assurance if t...

How do I configure eclipse to automatically refresh a project as part of it's build?

I have a maven plugin generating some code for eclipse to build, but I have to manually refresh the project before eclipse sees the code. How can I make eclipse automatically refresh the project as part of the build? I'm trying to use a custom builder, but it wants to run a command (which I don't need to do). ...

Xoreax Incredibuild alternatives ?

Hi guys, Does anyone knows if there are some alternatives for the Xoreax Incredibuild, this tool is powerful but also too expensive for me. I have project written in c/c++ with about three hundred thousand lines of code and using VS2005 to compile my code is just awfully slow. Thanks to everyone. ...

Test Class not building for x86

So I am getting an exception thrown that my Test project cannot open the SQLite assembly. However here is the output when I compile: ------ Build started: Project: Budget, Configuration: Debug x86 ------ Budget -> C:\Users\Scott\Desktop\Development\Budget\Budget\Budget\bin\Debug\Budget.exe ------ Build started: Project: Test, Configur...

TFS 2010 - The server returned content type text/html, which is not supported error, solution?

I have a setup a new TFS 2010 build definition. When I run the build for this build definition I get the following error during a "GET" operation: "The server returned content type text/html, which is not supported" 13:48 Overall Build Process 00:00 Update Build Number 00:00 Create the Drop Location 13:46 Run On Agent (re...

Building takes long time. How fight with that?

Speaking about compiled languages (c# in my case) I think that problem would always remain, no matter how performant your develop machine is. Build time could be more or less depending on concrete environment, but often it's enough to make your attention wanna move from your task to something else like stackoverflow, youtube, twitter etc...

Clarifications in Electric commander and tutorial

I was searching for tutorials on Electric cloud over the net but found nothing. Also could not find good blogs dealing with it. Can somebody point me in right directions for this? Also we are planning on using Electric cloud for executing perl scripts in parallel. We are not going to build software. We are trying to test our hardware in...

How to get VSS updated/replaced files from nantcontrib vssget task

I am using nantcontrib and the vssget task to retrieve the latest code from source safe in a build process. I would like to log which files have been updated/replaced, basically any changes that have occured, and output it to screen/log file. The only output I get is... [vssget] Getting '$/project' to 'C:\project' Below is my vssget ...

FinalBuilder 7. Is it possible to know who broke the build?

I am pretty new in builders and absolutely newbie in FinalBuilder. It is a great app, very intuitive, well documented with lots of features. But I can't find one thing: How can I determine who is responsible for the broken build? ...

Is DeriveFunctor a well-recognized extension? Cabal seems confused.

Cabal is giving me mixed messages. When I say: Extensions: DeriveFunctor It says: Warning: Unknown extensions: DeriveFunctor But when I say: GHC-Options: -XDeriveFunctor It says: Warning: Instead of 'ghc-options: -XDeriveFunctor' use 'extensions: DeriveFunctor' For now I'm just going to use the {#- LANGUAGE DeriveFunctor -#} ...

Is there specific tools are used to configure, build and install source programs?

Is there specific tools are used to configure, build and install source programs? ...

What is the in-place/Out-of-place builds

As in the title the questions is what is the difference between (in-place/Out-of-place builds)? ...

Visual Studio 2010 build with wrong framework

Hello, I'm working on Visual Studio Profesionnal 2010. In my solution I've got 2 projects The first is a web site with targeted .net runtime 2.0 the second is a dll with targeted .net runtime 2.0 I add the output of the second as assembly of the first. I build and rebuild and clean my solution result : Build succeeded But when I lau...

How do you integrate Authenticode into your build process?

Been trying to figure out the best way to integrate Authenticode signing within the build process and its frankly kicking my ass. There doesn't seem to be any way to smoothly and securely do it. I'm interested in hearing your stories on how you integrate Authenticode signing in your build process. Here's my sad story. C# develope...

Use sun.* classes in Eclipse Java project

I was sent some Java code that uses classes in the sun.awt.shell package, which is not part of the JDK public API, so Eclipse will not compile the project: Access restriction: The method getIcon(boolean) from the type ShellFolder is not accessible due to restriction on required library /System/Library/Frameworks/JavaVM.framework/Vers...