The build-time tag has no wiki summary.
-2
votes
4answers
218 views
Usage of #import — General guidelines for using #import in very large projects (ObjC)
Where do #import my headers and implementations?
Are there rules regarding what I should do?
Is there a way to import everything in a single header file?
0
votes
1answer
76 views
Is it possible to split my android project to multiple projects for reducing compile time?
I have created a big android application that takes a long time for building. Some namespaces are changed rarely. Is it possible to create these name spaces in separate projects and import them in ...
0
votes
2answers
110 views
Can I generate a constant array of size n
I want to generate a constant array power[501] = {1, p % MODER, p*p % MODER, p*p*p % MODER, ..., p^500 % MODER}, of which p is an constant number.
I know I could generate p^n % MODER by using the ...
0
votes
1answer
78 views
OOD - How to desing and structure the projects to avoid redeploying the main Application (factory pattern?)
I would like to check if my understanding in using and implementing factory pattern.
Say I am designing an Application to play several Games (chess, poker).
The games are loaded from one of the ...
1
vote
1answer
1k views
How do I use Shader Model 5.0 compiled shaders in Visual Studio 11?
I am trying to have the .hlsl files in my project pre-/ offline/ buildtime compiled for my C++ DirectX 11 project. Visual Studio compiles the .hlsl files into .cso files. I am now having trouble ...
5
votes
5answers
708 views
Importing header in objective c
In Objective-c when we using object of one class into another class by convention we should forward declare the class in .h file, i.e. @class classname;. And should import the header file in .m file, ...
1
vote
2answers
103 views
will C# compiler for big codebase run dramatically faster on machine with huge RAM?
I have seen some real slow build times in a big legacy codebase without proper assembly decomposition, running on a 2G RAM machine. So, if I wanted to speed it up without code overhaul, would a 16G ...
4
votes
4answers
497 views
Build-time code validation and generation based upon code files across projects
I'm looking for a method that let's me validate code and generator code as part of the build process, using Visual Studio 2010 (not express) and MSBuild.
Background Validation:
I'm writing a RESTful ...
0
votes
0answers
105 views
Log project build times from VC++9 (Visual Studio 2008) from CC.Net
As part of my war on long build times (our C++ solution takes about an hour to build using Incredibuild!) I'm trying to find the build time hotspots.
I've enabled Build Times logging (Tools -> Options ...
0
votes
1answer
114 views
How to decrease the building time for Visual Studio
I am working on solution with 40+ projects interlinked together.
At the moment, the build time is ~30min, and I really want to shorten it. What would be a good place to start shortening the build ...
0
votes
1answer
91 views
Build slow down on VS.NET 2010 after installing VS.NET 2011 (Developer Preview Edition)
I installed Visual Studio 11 (developer preview edition) last week, since then, the build speed of the previous version (VS 10).
- using diagnostic build the "GenerateResource" task takes much longer ...
1
vote
0answers
210 views
What steps can be taken to reduce link time? [duplicate]
Possible Duplicate:
How to improve link performance for a large C++ application in VS2005
We are building against Visual Studio 7.1, and have two main dlls.
DLL A is 7Mb, and DLL B is 5Mb ...
0
votes
1answer
92 views
add a task on build time visual studio
Is it possible to add a task in visual studio project build time?
My specific purpose is to copy a file and paste it somewhere else. Its a configuration file.
If yes then is there any type of tasks i ...
1
vote
4answers
1k views
How to minimize the build time of a Flash project?
One of the most annoying things when working with Flash/Flex projects is that it takes soo long to build the project. In a Flash game I am doing, it takes more than one minute to build it...
So, the ...
10
votes
1answer
1k views
Embedding build time into JAR Manifest using Ant
If I want to embed the current time in JAR manifest using ant is there an ant property I can use for "now" and which manifest attribute is the best to put this information?
I currently have the ...
1
vote
4answers
310 views
How can I optimize this code?
My current project has us using TreeSet and TreeMap in Java, with an input array of 10514 Song elements read in from a text file. Each Song contains a Artist, Title and Lyric fields. The aim of this ...
-1
votes
1answer
219 views
Why are our Visual Studio builds so slow, but only on one machine?
We recently bought two new build machines that have the same specs/hardware. From what I understand, the same or very similar disk images were used to load onto that machine. But, I believe Visual ...
0
votes
1answer
412 views
Building SL4 + RIAServices app takes too long on VS2010
Got a Win7 box with VS2010 Premium installed on it.
Building desktop apps works just fine.
But we got this solution with 15 SL4 and 21 desktop projects... Building the SL part of it takes too long. ...
2
votes
1answer
365 views
“variable tracking” is eating my compile time!
I have an auto-generated file which looks something like this...
static void do_SomeFunc1(void* parameter)
{
// Do stuff.
}
// Continues on for another 4000 functions...
void dispatch(int id, ...
2
votes
4answers
79 views
Does installation occur during runtime, or during compile time?
According to published books suitable for a Wikipedia reference:
Does installation occur during runtime, or during compile time?
'a "run-time error" is detected after or during the installation or ...
9
votes
2answers
1k views
Is there a way to display the build time of an entire solution in Visual Studio?
I know there is a way to display the build time of each project contained in a solution in visual studio. But what I'm looking for is the total time it took to build an entire solution, from the ...
0
votes
4answers
88 views
How can I determine why a build runs slowly in Visual Studio 2005?
I wanted to know if it is possible to know why a Visual Studio 2005 (MSBuild) build is taking a long time to build a project.
Suddenly we are getting 7-minute build times on some computers, while ...
1
vote
2answers
786 views
Forward typedef declarations, effect on build times, and naming conventions
I am curious about the impact my typedef approach has on my builds.
Please consider the following example.
#include "SomeClass.h"
class Foo
{
typedef SomeClass SomeOtherName;
...
8
votes
9answers
3k views
GCC/Make Build Time Optimizations
We have project which uses gcc and make files. Project also contains of one big subproject (SDK) and a lot of relatively small subprojects which use that SDK and some shared framework.
We use ...
7
votes
10answers
4k views
Does the number of projects in a Visual Studio 9 solution impact the solution load and build times?
I'm specifically interested in solution load times & build times - does fewer solutions mean better performance?
Note that I'm not referring to the performance of the built application.
Are load ...
