0
votes
1answer
15 views
How to use the -MG flag in cc 4.4.1?
I've recently upgraded my Ubuntu installation from Jaunty to Karmic. This apparently includes an update of the GNU C compiler, because code that compiled previously no longer does. …
1
vote
1answer
21 views
How to manually disable/blacklist Maven repository
In my base project I use dependency of JasperReports which has non-existent repository declaration in its pom. When I run every Maven commad there is dependency looking for commons …
1
vote
3answers
66 views
Do all dependencies used in a mono project need to be compiled with mono.
Let say I started a C# project under Windows (Visual Studio 2008) and I want to switch to Mono. Do I have to recompile all the dependencies my project uses, e.g., NHibernate and ev …
0
votes
0answers
26 views
`pkg_resources.require()` doesn’t see wxPython
I'm using Distribute's pkg_resources.require() in my project to check if prerequisites are installed on the user's machine. One of the prerequisites is wxPython. But when I try pkg …
0
votes
3answers
35 views
Batch Job Dependencies Using Open Source/Free Software
I run a large data warehouse plant where we have a lot of nightly jobs running concerruently however many have dependencies on a extract or data load process before they start. Cur …
1
vote
1answer
51 views
Maven doesn’t recognize sibling modules when running mvn dependency:tree
I'm trying to set up a multi-module Maven project, and the inter-module dependencies are apparently not being set up correctly.
I have:
<modules>
<module>commons< …
1
vote
0answers
14 views
Determine RC dependencies
I have a fairly large project which uses make for its build infrastructure. When we perform a build, we take advantage of cl.exe's /showInclude option to find source dependencies. …
0
votes
0answers
14 views
Generating RC dependencies
I have a fairly large project which uses make for its build infrastructure. When we perform a build, we take advantage of cl.exe's /showInclude option to find source dependencies. …
19
votes
15answers
528 views
How to stop Visual Studio adding assemblies to my web.config?
Every time i build, or publish, a web-site, Visual Studio attempts to check out the web.config file so that it can add numerous assemblies that are not required.
In other words:
…
2
votes
4answers
63 views
In what order prerequisites will be made by the GNU make?
Assuming we have the rule:
a: b c d e
and b, c, d and e are independent of each other.
Is the order of making b, c, d, e defined? It seems that generally they will be made in o …
1
vote
6answers
106 views
How Do You Clean up a PHP Project?
I have been working on a small php app (400K total). But in the process of building and learning I have a lot of junk files.
I didn't do my job and name them properly, ie demo1.p …
1
vote
3answers
70 views
Makefile to archive/link together auto-generated source files
Basically, I have a file 'blah.txt'. That files gets parsed by a 'compiler' and from it will generate N output .c files. I want a makefile that will from that .txt file generate th …
0
votes
4answers
125 views
Maven Antrun and Dependencies
(See edits below.)
The reason I can't just use the classpath, is because I need to manage some non-java libraries, and I'm compiling a non-java project.
I'm trying to use maven d …
1
vote
2answers
101 views
Events in an Inversion of Control (Dependency Inversion) system go which way?
Up or Down?
I'm a very visual person. I'm thinking of my application as a hierarchy, where the top is the root and the bottom is a leaf.
I'm also under the understanding that IoC …
0
votes
2answers
58 views
Organising project dependencies
I'm with a fairly large team and we are running into problem with the other libraries we depend on, and getting the same project files to work for every one.
The problem is that m …
