Questions tagged [building]

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

463 questions
4
votes
2 answers

AOSP - Error: Overriding commands for target (...), previously defined at (...)

I'm trying to build AOSP for non - supported device (surnia - Moto E2 2015 LTE). I solved lots of problems earlier but now I have one that I can't avoid. I saw a lot of people had that problem, but their was just warning... What can I do? Or could…
PeterPkp123
  • 68
  • 2
  • 8
4
votes
1 answer

Error building latest linux kernel within VirtualBox under 18.04.1-Ubuntu

I am trying to build the latest Linux kernel (GitHub) using a Oracel VM and a 18.04.1-Ubuntu image. I installed the need packages and probably even more. Here is a part of the packages I installed: sudo apt-get update sudo apt-get install git…
Nawin
  • 63
  • 1
  • 7
4
votes
0 answers

How to strip symbols out of a framework

I have a swift application that includes a framework of object files (.o files) compiled from objective - c sources, and the respective headers. In the final release executable the symbols of the library are still present. I've tried removing them…
bhartsb
  • 1,316
  • 14
  • 39
4
votes
1 answer

Building with multiple versions of the same dependency

Two of the components of an android application depends on two different versions of the same Library. (google protobuf). ie. Module 1 depends on protobuf2, while Module 2 needs protobuf3. The required parts of the the two versions are mutually…
Nowa Concordia
  • 709
  • 6
  • 23
4
votes
2 answers

AOSP lunch wrong target

First off I am new to android building and just wanted to start off with something simple, so I wanted to build AOSP 8.0 for my Xperia X (F5121) following the guide from Sony on how to build AOSP for unlocked devices. So to start the build I type…
4
votes
2 answers

Switching to dynamic linking

I'm building some packages with autoconf and automake, and would like to make sure libraries are dynamically linked (i.e. no static links). How should one set up the autotools to force dynamic library linking?
ajwood
  • 18,227
  • 15
  • 61
  • 104
4
votes
2 answers

Unit test then build project? Or? What order for Java

I have to make some Java classes within a package using Netbeans. I have a question about the order I am supposed to do the following tasks: We are supposed to create unit tests, Javadoc things, and build the project (to make a JAR file that…
neoteric
  • 49
  • 1
  • 2
4
votes
2 answers

Building SharpKeeper (ZooKeeper Client for .NET)

I've been looking for .NET version of the ZooKeeper client and I found one. https://github.com/ewhauser/zookeeper/tree/trunk/src/dotnet/SharpKeeper/ I was so thrilled and downloaded the source files to build a client assembly file. but when I opened…
samuel281
  • 65
  • 2
  • 6
4
votes
1 answer

Alert me XamlCompiler error WMC1012 on building

I try to build a windows 10 universal App with Visual Studio in c# and xaml. But I get the error: [...].csproj : XamlCompiler error WMC1012: A project cannot have more than one ApplicationXaml item What does it mean? I only have one App.xaml in my…
4
votes
1 answer

Google Maps API: How to calculate the building surface area?

In google maps, we can see a building footprint displayed. But how can we get this building outlines details via the Google Maps API? I know you have an easy algorithm to calculate a surface area in m2 via maps, but there you have to put in your…
Shouse
  • 252
  • 5
  • 17
4
votes
2 answers

Typescript: use lib.core.es6.d.ts

I'm using typescript, and trying to use an ES6 map, but getting compile errors. I've discerned that I need to reference the file lib.core.es6.d.ts (ES6 Map in Typescript), and I know where that is on my filesystem. However, I can't find anything…
Justin Blank
  • 1,768
  • 1
  • 15
  • 32
4
votes
1 answer

Build an ear using maven

I am new with maven, i have a task to change building of an ear from ant build to maven build. Are somewhere some tutorials related to this, how to build an ear using maven ? Please guide me if you know something related to this.... Thanks…
Mircea
  • 49
  • 1
  • 1
  • 2
4
votes
1 answer

Combine many ruby source files into a single file

I'm working on a project in ruby, and I have many source files each declaring a few classes and methods in a module. I've been looking around and I may just be missing something, but I can't seem to find a way to merge all of my source files into a…
beeselmane
  • 1,111
  • 8
  • 26
4
votes
1 answer

WebRTC not building for Windows

Whenever I try build WebRTC for Windows, I get this error when running gclient runhooks: ________ running 'C:\path\to\depot_tools\python276_bin\python.exe src/build /landmines.py' in 'C:\path\to\webrtc\src\chromium' Please follow the…
4
votes
2 answers

Building an iPhone application from the command line, without xcodebuild

It is possible to build an iPhone application manually, without using xcodebuild nor an Xcode project? The idea is to build the application using SCons without creating an Xcode project. I know there is the codesign command line tool, that I could…
Nicolas Goy