Questions tagged [building]

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

463 questions
2
votes
1 answer

How to build setup executable for chromium from sources

How to build setup.exe or setup.dmg (for mac) of chromium browser? I tried to read the build documentation but there is only information about how to build chromium and run it but not to build setup.exe
Mano
  • 99
  • 9
2
votes
5 answers

Assembly error building app - Encountered multiple versions of assembly

I was working today as I do everyday, when I tried to build my project and I got this error: Encountered multiple versions of the assembly with GUID '00020430-0000-0000-c000-000000000046'. Try pre-importing one of these assemblies. It says…
gabsferreira
  • 3,089
  • 7
  • 37
  • 61
2
votes
1 answer

Built C app works inside folder it was built into, fails when brought outside of it

I'm making an app in C and I've built it using the following command: gcc `pkg-config --cflags gtk+-3.0` main.c -o hello `pkg-config --libs gtk+-3.0` -lX11 -rdynamic And this works, cool! Except.. when I try to copy the exported file into another…
2
votes
1 answer

Audio Policies error during Pixel Experience compilation

During the compilation of Pixel Experience (I use brunch, but the same error is occurred if I use lunch) I get an unusual error, something that has to do with Audio Polices. I have tried reinstalling Ubuntu (I'm using 18.04.3) and doing everything…
2
votes
1 answer

Solve ld linker issues for building R source

While trying to install R from source, I ran into linker issues, in particular: undefined reference to 'u_getVersion_58 I found limited information on this error (eg, this post on the RStudio forum). Despite running apt-get build-dep, these issues…
alan ocallaghan
  • 3,116
  • 17
  • 37
2
votes
3 answers

Problems when building in ionic cordova android

What went wrong: A problem occurred configuring project ':CordovaLib'. No toolchains found in the NDK toolchains folder for ABI with prefix: mips64el-linux-android Try: Run with --stacktrace option to get the stack trace. Run with --info or…
2
votes
1 answer

statically built python3.7 stops working when moved out of build folder

I want to use a static python interpreter to run on a rigidly managed server. So far I've built the interpreter, but I can only use it within the build directory. If I try to copy it and use the copy, it stops working, and fails with the following…
Warpspeed SCP
  • 154
  • 2
  • 17
2
votes
1 answer

Does sbt/maven includes the complete dependency in jar file?

I am building a rest API for a previous project. If I add it as dependency to my new rest API project, will all the functionality will be added to my rest API jar file or only the methods which I use? My old project jar is 181M, so the whole will be…
Laeeq
  • 357
  • 1
  • 4
  • 15
2
votes
1 answer

AOSP , Error while building android Source code on Mac

I am building Android source code on MacOS 10.12.6. Android Version is 7.1.1, I have faced few issues and till now i am able to resolve all of it. Right now I am facing issue with "lunch" command following is the error :- -bash: Saving: command not…
r4jiv007
  • 2,974
  • 3
  • 29
  • 36
2
votes
2 answers

Why does windeployqt output files that are not required, and how can I get rid of them?

I was informed about the "windeployqt" utility, which should be able collect all Qt/MinGW DLLs that are required to run my Windows Qt application properly. So I gave it a try. Unfortunately I have noticed that it collects more files then neccessary.…
Willy K.
  • 397
  • 2
  • 14
2
votes
0 answers

Building OpenCV 3 cuda errors

I want to build OpenCV 3.2 for Visual Studio 2015 in Windows 10 with Cuda support. So, I configured it using CMake (see configuration file here). Cuda is installed and the path variable is set correctly. However, when building the OpenCV.sln…
black
  • 1,151
  • 3
  • 18
  • 46
2
votes
0 answers

Building error when building Android Rom (ABC Rom - based on PureNexus, based on AOSP)

I getting this build error when doing mka bacon after breakfast [device]. I have tried also using make clobber to clean it out so it's fresh however I still get this error. I have tried removing the line "#include " from…
Ed St John
  • 21
  • 2
2
votes
1 answer

Visual studio showing non-existent errors

I'm having strange issues with Visual Studios 2015 Enterprise Edition and I couldn't find solution online. I need to build a solution file that contains multiple sub-projects and solutions. I had created my own project and a solution within the main…
KMC
  • 1,677
  • 3
  • 26
  • 55
2
votes
1 answer

Compiling on ARMv8 - Running on ARMv7

Is it possible to compile a Package on ARMv8 and run it on ARMv7 ? I am not really experienced in the whole building thing (yet). I came to this question because my Odroid C1+ fails to compile icinga2 due to the very limited RAM. The C2 has 2 GB of…
2
votes
1 answer

Running python setup.py install returns UnicodeDecodeError for some packages

I'm using Python 3.5.0 on Windows 7 64-bit My user name and full computer name both contains Slavic character: ł Therefore this character is in some file paths and environmental variables EDIT: Normally my active code page is 852 I'm getting…
Aven
  • 21
  • 5