build

Alternative to Kconfig (kernel config language) to configure/describe large C software

Hi, I'm interested in the configuration/building of large C systems... The Linux kernel uses the Kconfig language to describe the various configuration options (macros defined as CONFIG_X) and their dependencies... Basically, in each directory, there's a Kconfig file with the configuration options defined in this subsystem... Is there...

How to idenfiy if the DLL is Debug or Release build (in .NET)

I'm sure this has been asked before, but google and SO search failed me. How can I identify if a DLL is a release build or debug build? ...

Handling dependencies in blackberry development

What is the best way to handle 3rd party dependencies in a .jad file? Is it possible to bundle a .jar? Do you need to unpack it and include the .class files? ...

What should be default value for Blackberry build configuration ? [Debug,Private,or Release]

Hi, I want to know What should be default value for build configuration ? [Debug,Private,or Release] at the time of 1) Running application locally on simulator 2) Generating cod file while actually deploying on device/phone. ...

Compile Build and c file on Windows

I have a directory that has the following files Build asc2uni.c asc2uni.1 I have to compile it, but the problem is I don't know how what is the compiler to use for this format and how to do it. Any ideas? Edit: I am trying to compile this on Windows XP. Edit 2: The Build file content: cc -I../Modules -O -o asc2uni asc2uni.c ../M...

How to decrease MSBuild times.

my situation In the C# project I am now working on we have a fairly big solution (80+ projects). Now rebuild times of 5 minutes+ are really becoming a quite problem using MSBuild from VS 2008. In a analysis I did last week it turned out that my build time was spent as follows 1) Copying files to the projects and recopying it to the p...

Pass ant target to multiple build.xml files in subdirectories

I have a project with multiple modules, each in its own directory. Each module has its own ant build file (build.xml) In the root directory I've set up a general build file that calls the build file of each module in the right order. <?xml version="1.0"?> <project name="bridgedb" default="all" basedir="."> <target name="all"> <an...

How do you schedule a TFS 2008 build to run every hour?

"New Build Definition" in Team Explorer doesn't allow you to force a build to run more frequently than once every 24 hours. Is this possible? I want the tests to run every hour regardless of whether any changes have been checked in. I think this is possible by creating a scheduled task but I'd rather keep the solution in TFS if possibl...

How Ant can get a value read from a file into a property value?

The file looks like: a1,b1 a2,b2 ... I know the value "a2". How to get the value "b2" into a property value. I know how to select line which contains "a2" by: <linecontains> <contains value="a2"/> </linecontains> But I do not know how to set a property value to "b2". I am at your disposal for more other informations. ...

How to set up an automated mechanism to find build breaks?

In a team where multiple people are working on same file or different files of the same solution it is quite natural that build break happens.. But how to have an automated mechanism where we can find build breaks? ...

sharing build artifacts between jobs in hudson

Hi I'm trying to set up our build process in hudson. Job 1 will be a super fast (hopefully) continuous integration build job that will be built frequently. Job 2, will be responsible for running a comprehensive test suite, at a regular interval or triggered manually. Job 3 will be responsible for running analysis tools across the cod...

How to set an ANT property only if it is unset

Hi, I can't figure out how to set an ANT property on the condition that it has not been set(i.e: it is not defined in the properties file and should automatically default). So far, I only have the following code: <condition property="core.bin" value="../bin"> <isset property="core.bin"/> </condition> But this only seems to work ...

Build and Integration Environment for Java/J2EE

is there such a thing in a standard manner? including Java Source Code - Test Code - Ant or Maven JUnit Continuous Integration (possibly Cruise Control) ClearCase Versioning Tool Deploy to Application Server in the end I 'd like to have an automatic Build and Integration Environment. ...

How to parse and interpret ant's build.xml

Is there an Ant API for reading and ant build.xml and retrieving elements from it? Specifically I want to be able to retrieve the values in a path element and be able to walk all of the elements in the path. My purpose is to retrieve a given path and ensure that it is referenced correctly in a manifest, so that the build and the manifes...

How to use Same Library for Silverlight and CLR

Hi, I Have a library which has custom domain logic. Some of the stuff is heavy hitting and depend on the core runtime outside silverlight runtime. Is it possible to compile the same code for 2 different runtimes and reference different flavours from different consumers? How ...

Can I use perltidy's HTML formatter in my automated Perl build?

I'm using Module::Build to perform build, test, testpod, html, & install actions on my Perl module that I'm developing. The HTML files that are generated are okay, but I'd be much happier if I could somehow configure Module::Build to use the perltidy -html formatting utility instead of its own HTML formatter. Anyone know of a way I c...

.Net Build Automation

Hi Everyone, I'm looking for some resources on build automation with VS2005 (VS2008 soon). I'd like to do things like delete all my files in my output folder, move all my build output to one folder, etc. I think this stuff is pretty basic but I don't know where to get started. Thanks! ...

Pass a value from TeamBuild to MSBuild

I have a build that is running in TFS TeamBuild. I want to pass a property from that to the MSBuild that is run for each Project built by the TFSBuild.proj. Example: TFSBuild.proj <PropertyGroup> <Version>0.0.0.0</Version> </PropertyGroup> <Target Name="BuildNumberOverrideTarget" DependsOnTargets="AfterInitializeWorkspac...

eclipse stuck when building workspace

I am using eclipse 3.4.1 Java EE under Vista. It seems to like getting stuck when building my workspace. Canceling the build doesn't seem to do anything as well. Why is this happening and how do I fix the problem? ...

Why does the maven-assembly-plugin puts the same dependency in my zip multiple times?

I put together an assembly descriptor <assembly> <id>all</id> <formats> <format>zip</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <moduleSets> <moduleSet> <includes> <include>org.openscada.atlantis:org.openscada.atlantis.core.common</include> <include>org.openscada.atlantis:org.openscada.atlantis.net.b...