Building is the process by which source code is converted into executable object code.
Questions tagged [building]
463 questions
0
votes
1 answer
C++: No output on eclipse console
Hello and thanks in advance for helping,
I've the problem that I don't see any output on my eclipse console (on linux ubuntu 12.04).
I have this little C++ program:
Addressverwaltung.cpp:
#include
#include "Adresse.h"
using namespace…

RandomDisplayName
- 271
- 5
- 19
0
votes
2 answers
iPhone App Building Setup - same code different assets
I have a number of apps (about 16 at the moment and growing) which have pretty much identical code. That is the code that drives them is the same.
There are a few things that change between apps, they are:
A PDF file (inside the bundle)
The…

ddoor
- 5,819
- 9
- 34
- 41
0
votes
2 answers
Grunt rename not working
My directory structure looks like this:
-src/
-----pages/
----------...
-----...
-build
My gruntfile contains the following task:
copy: {
all:{
dest:"<%= builddir %>/",
src: ["src/**/*.{yaml,yml,py,html,htm,json,css}"],
…

bigblind
- 12,539
- 14
- 68
- 123
0
votes
1 answer
Building AOSP and launching the emulator
I am trying to launch the emulator after building the Android source.
Right now, the setup is like, I am running a windows machine connecting through putty to my linux machine. I have downloaded my source in the linux machine and I have successfully…

Chaitanya
- 3,399
- 6
- 29
- 47
0
votes
2 answers
how to compile, setup, and make a library .so as shared in linux
I am new to linux compiling an opensource shared library.
after I downloaded, let say gTest from google, I unzipped the folder.
cd gtest.x.x.x
then
configure
then I did,
make all
a bunch of compilation, then linking is expected, am I right?
and…

aah134
- 860
- 12
- 25
0
votes
2 answers
make error "virtual memory exhausted stop " while building spidermonkey
I got this error while I was building spidermonkey using cygwin terminal, the error is
"***virtual memory exhausted stop"
so how to solve this error ?

sara
- 256
- 1
- 3
- 15
0
votes
1 answer
Possible to build blender with latest boost libraries?
I have a working Blender up-to-date C/C++ build, but it compiles with Boost 1.49.
I would like to use latest Boost libraries (currently 1.53) because of its usage in a related project.
Is it daunting to compile blender with the latest boost? Has…

Jeepster
- 129
- 2
- 11
0
votes
1 answer
error class has no member named - android libtilerenderer
im trying to build qcom/msm8960/libtilerenderer but i have the next error compiling:
hardware/qcom/display/msm8960/libtilerenderer/tilerenderer.cpp: In member function 'void…

Samuaz
- 295
- 2
- 13
0
votes
2 answers
Error when building c code with -D
I get the following errors when I'm trying to build my c code files with -D. But, if I build it without -D, it works. I don't know why. Thanks. (My machine is ubuntu12.10, 32bit)
gcc c1.c c2.c -D DEBUG
/tmp/ccX04EIf.o:(.data+0x0): multiple…

qiaoba
- 5
- 1
- 3
0
votes
1 answer
Visual C# Building Release but where are needed dll's?
I know that there are many of such threads, but no one tells me completly what to do. I'm writing C# .Net 4.0 Application in Windows Forms and I need to compile it as Release that should working on other computers with installed Full .Net Framework…

Vilo
- 152
- 1
- 1
- 13
0
votes
1 answer
Building libcurl library in c++, Noob Question
I wanna write a little c++ program using libcurl. It's for a school project so I need to be able to package everything in a zip file and email it to my instructor.
I've just downloaded the tar from the libcurl website but now I'm not sure what the…

hdx
- 4,198
- 7
- 26
- 33
0
votes
2 answers
Copy jar to output folder when compiling/building project in Java
Quick question: How can I configure NetBeans to copy a jar file (I am using sqlite.jar for my application) to output folder when compiling/building project in Java?

NewProger
- 2,945
- 9
- 40
- 58
0
votes
1 answer
How do I populate and associative array using php and mysql
How would I add elements to the below array?
/// BUILD CROSS REFERENCE ARRAY FOR PARENT COMPANY NAMES OF SUBCATEGORIES///
$newArray = array();
$comp_names = "SELECT company_name, company_id FROM pe_company_access";
$name_results =…

George
- 3
- 2
0
votes
1 answer
internal-package Error 2 while building in Theos
I keep getting make: * [internal-package] Error 2 when trying to build a tweak im working on. Ive never had this issue before, and its not specifying whats wrong. Here is what it says:
Ethans-Mac-mini:alienblue ethanarbuckle$ sudo make…

user2272641
- 131
- 1
- 3
- 16
0
votes
1 answer
Remove floor plans from Google Maps Android API v2
I am creating an Android application that uses the Google Maps API. I've set the MapType to Satellite so it will not show any labels, but it still shows the Google Maps floor plans when I zoom into an area that has them. Is there a way to make…

Matthew Berra
- 1
- 1