Questions tagged [building]

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

463 questions
0
votes
1 answer

Build Project from Separate Solution

I have a .dll that my project uses which is generated by a project in a separate solution. I have a conditional MSBuild Target which will build this project and copy the .dll if the .dll does not exist. I am building with this command inside my…
Jonathan Mee
  • 37,899
  • 23
  • 129
  • 288
0
votes
1 answer

PHP from source - Questions about Extension-Folder and Interaction with existing repo-version

As a Linux beginner I'm currently a bit confused building my own PHP from source. I have a Ubuntu with a LAMP-Stack where all packages comes from a Repository. (PHP as FastCGI) Now I'm trying to set up a second PHP-Version and actually it works well…
Manuel
  • 382
  • 1
  • 2
  • 16
0
votes
1 answer

Bootstrap classpath not set

I just upgraded my java to 1.7.0_60. I'm using maven to build my components. When I try to run mvn test on a component, I get this error message- [INFO] Compilation failure could not parse error message: warning: [options] bootstrap class path not…
AlwaysALearner
  • 6,320
  • 15
  • 44
  • 59
0
votes
2 answers

How do you use the gradle javafx android builder?

For the gradle javafx builder I've used the tutorial at: https://bitbucket.org/javafxports/android/wiki/Building%20and%20deploying%20JavaFX%20Applications I downloaded the runtime from here: https://bitbucket.org/javafxports/android/downloads I'm…
sazzy4o
  • 3,073
  • 6
  • 34
  • 62
0
votes
1 answer

Frameworks/opt/telephony error when building with 4.4.3

I'm building a 4.4.3 ROM and encounter this error frameworks/opt/telephony/src/java/android/telephony/SmsManager.java:165:…
0
votes
1 answer

Configuring Gradle for iosched 2013 source from Android Studio

Android developer noobie here. I got the latest iosched 2013 source and resolved most of the issues and edited the Gradle file accordingly (at least I think I am on the right track). I can now launch the app in an AVD. Mostly resolved by: Running…
tinonetic
  • 7,751
  • 11
  • 54
  • 79
0
votes
1 answer

JAR to EXE, stops working when moved from DIST directory (netbeans)

After my project is done I click F11 (build button). Successful bild to: C:\Users***\Documents\NetBeansProjects\twitter1\dist\twitterapitest.jar And the .jar works perfectly when its left at this location, even if I convert it to an EXE it works in…
user3650211
  • 3
  • 1
  • 7
0
votes
1 answer

Testing a linux kernel in qemu

I have just built the 3.13.3 kernel from kernel.org on my ubuntu 12.04 computer. I ran the make menuconfig command and then I did make which built the kernel and the modules. I want to run the kernel in the qemu emulator (qemu-system-x86_64) so I…
user3131007
0
votes
1 answer

What to do after make test fails?

On VirtualBox VM OpenBSD: I was trying to build apr 1.5.1 in my attempt to build an apache 2.4 server WITHOUT packages( ie. from source ) and when I ran make test, testlock failed with: testlock : -Line 300: Timer returned too late FAILED 1 of…
user2738698
  • 520
  • 7
  • 19
0
votes
2 answers

Trouble with CyanogenMod local_manifest

When using the commands breakfast (in this case, hlte (samsung galaxy note 3)), or brunch hlte, it searches for dependencies to build the OS. I am trying to list different repos to sync from so it doesn't overwrite my changes when it comes to doing…
user3398918
  • 71
  • 3
  • 10
0
votes
0 answers

Can't build C# in ST2

I've installed Sublime Text 2 and I'm wishing to use it in conjuction with C#, but for some reason I can't build my code. The error I'm getting: Project "D:\PannariBranch\Dropbox\dev\build.cs" on node 1 (default…
Tatu
  • 153
  • 1
  • 1
  • 9
0
votes
1 answer

error C2512: 'Building' : no appropriate default constructor available

class Building{ private: int floor; public: Building(int s) { floor = s;} }; int Main(){ Building twin, star; Building BlueHouse(5), JangMi(14); } I made this code, and when I build the code 'error C2512: 'Building' : no appropriate default…
0
votes
1 answer

Difficulty building multiple files solution

I'm trying to build a solution which has three files. With main.cpp it is four files. Entity.h #pragma once #include "SystemBase.h" namespace Engine { class Entity { public: Entity() { } void s(SystemBase* sb) {…
Artsiom Miksiuk
  • 3,896
  • 9
  • 33
  • 49
0
votes
0 answers

Compiling Java Classes and Building jar Package Explicitly in Windows

I Want to do all using CMD, I was developing using Netbeans, but I want to compile all java files and to build jar package through CMD Windows. Suppose I have this: My position: C:\>cd "Directory Default1" C:\Directory Default1> My JDK is located…
joseluisbz
  • 1,491
  • 1
  • 36
  • 58
0
votes
1 answer

How to add a new .cpp file to, and then build, a c++ library for Android?

I'm making a Unity3d plugin for this c++ library for Android. Ive gotten it to work in windows by opening the visual studio project the library makers provided, adding a new .cpp file to it with my API code and building to a dll. I'm wondering now…
Guye Incognito
  • 2,726
  • 6
  • 38
  • 72