Questions tagged [building]

Building is the process by which source code is converted into executable object code.

463 questions
3
votes
2 answers

silent closing VS 2008 on Windows 7

I am trying to build a MFC Windows Application with Visual Studio 2008 on Windows 7. I use the "Batch build" feature of Visual Studio to get both Release and Debug of several projects' outputs with only one-click. The problem is: Frequently, after I…
sergiol
  • 4,122
  • 4
  • 47
  • 81
3
votes
2 answers

make - remove intermediate files silently

When building a chain rule make automatically invokes rm to remove any intermediate files at the end of the build process. Since I have about 400 intermediate files to delete that way, that floods console output badly. Is there a way to silently rm…
Karathan
  • 159
  • 1
  • 10
3
votes
3 answers

Fastest way to convert string to XML

We have got an XMLIDList helper which uses += ( :( ) What I am looking for, what is the fastest possible way to do this? It is not been a problem before because the lists have been <10 items, but we have added a new feature that can pass 15k items.…
Steoates
  • 3,058
  • 5
  • 27
  • 43
3
votes
2 answers

building android error java version

I'm newbie in building android OS. I use Ubuntu 14.04 LTS and the JDK 8. The envsetup.sh gives…
Serge Ungar
  • 31
  • 1
  • 3
3
votes
0 answers

Unable to deploy Xamarin.iOS app targeting iOS 7.1 from Visual Studio

I have few error when i building iOS APP with Visual Studio installed on my PC. Everyone is in the Properties APP: *SDK version is empty and i can't choose anything. *Deployment target is empty and i see error: Unable to retrive iOS SDK information…
3
votes
3 answers

Developing an iOS 3.1 application with iOS 4.0 SDK and device?

I've developed an iPhone application for an iOS Deployment Target 3.2. But my client changed his mind and would like the app to be available for iOS 3.1. Thus, i've set iOS Deployment Target 3.1 and left base SDK to 4.0 but everything compiles fine…
Mick F
  • 7,312
  • 6
  • 51
  • 98
3
votes
2 answers

How to fail a build in Jenkins dependent on a certain jar

Is there a way to fail a build in Jenkins if a certain jar is used in a Java Maven Project? For example I know org.example:badartifact:1.0.1 has a security vulnerability. I told everyone about that, and they fixed their projects..., but maybe some…
dertoni
  • 1,763
  • 2
  • 24
  • 47
3
votes
3 answers

Building GCC on OS X 10.11

Building GCC (latest revision) on OS X 10.11.1 here, using the command line: ../gccx/configure --with-gmp="/opt/local" --with-mpfr="/opt/local" \ --with-mpc="/opt/local" --with-libiconv-prefix="/opt/local" --with-pkgversion="GCCX" \ …
Noldorin
  • 144,213
  • 56
  • 264
  • 302
3
votes
2 answers

Building concrete objects from files. Are there any design pattern appropriate for this?

I have to say I always try to keep code simple and beautiful, mainly using design patterns when possible. Also, I am impressed I did not find anything related to this on the internet (except simple and very vague examples, mostly in javascript using…
Yves Calaci
  • 1,019
  • 1
  • 11
  • 37
3
votes
1 answer

OpenCV: ‘AlgorithmInfo’ does not name a type while building opencv_contrib

I am getting the following error while trying to build opencv with the contrib module /opencv/opencv_contrib/modules/tracking/include/opencv2/tracking/tracker.hpp:577:11: error: ‘AlgorithmInfo’ does not name a type The code is latest and pulled…
krips89
  • 1,683
  • 4
  • 17
  • 32
3
votes
2 answers

App engine index building stalled stuck

I am having a problem with indexes building in my App Engine application. There are only about 200 entities in the indexes that are being built, and the process has now been running for over 24 hours. My application name is romanceapp. Is there any…
Alexander Marquardt
  • 1,539
  • 15
  • 30
3
votes
0 answers

Building 64bit Python in Windows

I am trying to automate the build 64bit Python-2.7.6 for our project. The default Python MSI uses an older version of OpenSSL which we want to upgrade. I am totally new to building applications under Windows. All the documentation I found are about…
tuxalot
  • 313
  • 4
  • 11
3
votes
1 answer

Error making openwsman on ubuntu 12.04

I am trying to build openwsman (2.3.0 downloaded yesterday from the official website) on Ubunutu 12.04. I follow the instruction found in README.md and after installing several additional packages I finally got the command cmake .. to succeed.…
Ivaylo Strandjev
  • 69,226
  • 18
  • 123
  • 176
3
votes
1 answer

How do I build cx_freeze from source on Windows?

I tried to install cx_freeze on my computer (windows) with an MSI, but the installation kept failing saying something like "one or more needed files could not be found." Because installing from a prebuilt binary wasn't an option, I decided to build…
pipsqueaker117
  • 2,280
  • 9
  • 35
  • 47
3
votes
3 answers

c# DLL only compiling with one class

I have created a C# Class Library. In it I insert two classes. For example: Apple.cs Orange.cs namespace FoodLibrary { namespace Apples { public class Apples { public string type { get; set; } public string colour { get;…