The process of converting source code files into standalone software artifact(s) that can be run on a computer
0
votes
0answers
5 views
Handling Go GIT repositories and its non-code resources
I'm new to Go and I'm struggling to find the best way to handle git repositories.
At this moment I'm using the go's official proposed directories structure, but I think it has many pitfalls.
It's ...
0
votes
0answers
3 views
Configuring sublime text build system to use shell script
I have a shell script with various functions defined and all accessible via the terminal by including the following line in bash_profile: source ~/hcom-env/conf/sys/hcom-profile
However when I try to ...
0
votes
0answers
5 views
Under TFS how do I get the build associated with a queued build?
We are writing a layer that allows us to trigger a build under TFS from another application.
The intention is that a Microsoft Dynamics CRM site can trigger the build. So as to make this simpler we ...
0
votes
0answers
13 views
Reset Build Order of a VS2012 Solution
I have a VS2012 solution with consists of more than 30 projects.
I ordered them manually for the build process by setting dependencies in the build order as desired.
Is there an easy way to revert ...
0
votes
0answers
16 views
Experience On Maven pom.xml To ANT build.xml Script With Maven Plugin Support
We are planning to implement a Maven based Java Web Application project.
Due to nature of customer requirements ""we may have to provide the ANT based build scripts"" in future course of time.
It ...
1
vote
1answer
11 views
Scons and build from root and subdirs
I'm trying out Scons and have a problem arranging it to my liking. I have two related projects, one with production code, other with tests for it arranged in following way:
Root
Root/Production
...
0
votes
1answer
34 views
Getting function names programmatically
I'm making a build that uses a lot of function pointers, with a struct that vaguely looks like this:
struct functionArray {
void (*func)(void);
} funcarray[20] = {
func1,
func2,
...
0
votes
0answers
12 views
Building Qt5 for Android on Windows
I would like to know how to build Qt5 for Android on Windows. I have found some documentation, but they are about building on Linux. So how to build Qt5 for Android for Windows operating systems?
...
0
votes
1answer
19 views
Grunt: custom task development how-to
I need to implement a custom Grunt task and I'm absolutely lost about the development workflow.
How do I develop a custom task and I simulate loading it using npm during development?
Is there any ...
0
votes
0answers
6 views
Teamcity - Revisions are not found for build configurations
I have two build configurations: A and B. A is fetching the sources from a Git repository, building the source code and running unit and integration tests, B should deploy the application to a test ...
0
votes
0answers
17 views
NHibernate? Error when accesing my release build
I've finished (?) a development on a website that wasn't mine.
It uses NHibernate which I'm not famillir with.
My developpement seems to work fine on debug mode, but when I publish my release build, ...
0
votes
2answers
16 views
Building a solution which contains a windows service and a windows forms project
I have a solution which contains a windows service and a windows forms project. Is it possible to build the solution and have the output from both project in one folder ? The ouput folder should ...
1
vote
1answer
40 views
Information on Build Systems-Books/Online Resources/Where to start? [closed]
I am new to how does a build system exactly works. I know the details on Operating Systems, Computer Architectures and Compilers fundamental concepts.
Now, I want to make a very efficient Build ...
-1
votes
1answer
28 views
Compiling kernel, ld doesn't have the -T option
I made a custom bash script for assembling, compiling, and linking the kernel but when it gets to the line for linking i run into an error (see below). Im running this on OSX, newest build so im not ...
1
vote
1answer
36 views
Updating file references in a json file via a grunt task
I'm a JavaScript developer and fairly new to creating a build process from scratch. I chose to use Grunt for my current project and have created a GruntFile that does about 90% of what I need it to do ...