* Compiled computer programs are sometimes called "binaries". Instead of this tag, use [tag:executable] for this sense.
Questions tagged [binaries]
191 questions
1
vote
1 answer
FreeBSD centralized build server
Up front: I am not a system adminstrator and my knowledge of FreeBSD-administration is targeted towards getting the programs I have written running.
I've started out with a single FreeBSD machine. Now I've got four up and running. From the start…

LongHike
- 4,016
- 4
- 37
- 76
1
vote
1 answer
Handle large repository with binaries in git-svn
At my workplace there is a large svn repository (+80.000 revisions) with lots of binary files. I am experimenting with git-svn over it, but it seems impractical to clone the whole history (it takes more than 100 GB and nearly a week to complete the…

Leandro Gomez
- 59
- 6
1
vote
0 answers
Excuting a binary in current shell
I need to check which all environmental variables a binary is using . But when i simply execute the binary using ./binary_file, the variables don't reflect in env's output as the binary file is getting executed in its own shell.
I cant use source…

Vinod Pn
- 266
- 1
- 2
- 10
1
vote
1 answer
Convert integer into binary string without losing zeros
I need to convert a whole in binary, my problem is that if I have 011001, I find myself at the end of the conversion 111. How can I leave the zeros? and maintain so the conversion as it should be.
Thank you.
int value = 8388607;
String bin =…

Mr. Developer
- 3,295
- 7
- 43
- 110
1
vote
2 answers
Make error in caffe
Output for 'make all'
[root@parags-pc caffe]# make all
CXX src/caffe/layers/batch_norm_layer.cpp
CXX src/caffe/layers/sigmoid_layer.cpp
CXX src/caffe/layer.cpp
CXX src/caffe/layer_factory.cpp
CXX src/caffe/data_transformer.cpp
AR -o…

Parag
- 655
- 4
- 7
- 19
1
vote
3 answers
How the dynamic linker determines which routine to call on Linux?
I have a question about dynamic linking on Linux. Consider the following disassembly of an ARM binary.
8300 :
....
8320: e28fc600 add ip, pc, #0, 12
8324: e28cca08 add ip, ip, #8, 20 ; 0x8000
8328: e5bcf344 ldr…

Vasant K
- 115
- 1
- 1
- 10
1
vote
3 answers
Security: google client secret in app source code safe?
I'm having an iOS and Android app built for a backend we made and in the app we want to user to authenticate their gmail with us. On the iOS quickstart page I see the developer needs to include:
private let kClientID = "YOUR_CLIENT_ID_HERE"
private…

kramer65
- 50,427
- 120
- 308
- 488
1
vote
1 answer
What is the difference between "binary install" and "compile and install from source"? Which is better?
I want to install a driver for Ros (robot operating system), and I have two options the binary install and the compile and install from source. I would like to know which installation is better, and what are the advantages and disadvantages…

lmiguelvargasf
- 63,191
- 45
- 217
- 228
1
vote
5 answers
Erlang: How to convert erlang date to binary?
I have the following function that returns current date:
7> {Y,M,D}=erlang:date().
{2014,11,18}
Now I need to have a binary with these values inside like this:
<<"20141118">>
I have tried
15> S= [Y,M,D].
[2014,11,18]
16> list_to_binary(S).
**…

nedwed
- 243
- 2
- 9
1
vote
0 answers
Move PHP binaries to another server
I have a PHP installation that I did by compiling from the sources on a RHEL6 server.
All is fine and working.
My question is:
Can I copy the "php installation" to another server and have it run without compiling on that other server ?
*I already…

yield
- 264
- 4
- 13
1
vote
1 answer
What are test files and why are they included in the Node.js installer, but not the binaries?
I have never built software from source, so forgive my complete ignorance on this subject. I was trying to determine what the difference would be between installing Node.js from the OS X Installer pkg vs unzipping the 64-bit binaries file (from the…

jsejcksn
- 27,667
- 4
- 38
- 62
1
vote
0 answers
Unable to run c/c++ code on OS X 10.9
For some time now I have been unable to run c or c++ code on my Mac running OS X 10.9. See my earlier post for details on what I tried to do about this originally some time ago:
In Xcode running such code gives me the error: "clang: error: linker…

Jonathan O'Farrell
- 327
- 1
- 2
- 12
1
vote
1 answer
Python unpack binary data, numeric of length 12
I have a file with big endian binaries. There are two numeric fields. The first has length 8 and the second length 12. How can I unpack the two numbers?
I am using the Python module struct (https://docs.python.org/2/library/struct.html) and it…

user1895406
- 1,383
- 2
- 9
- 10
1
vote
2 answers
mysql install from binaries bin folder commands "command not found"
I just installed mysql from binary files on ubuntu, the server starts and I can access the sql command window.
However when running commands from mysql bin folder like mysqladmin, mysql_secure_installation... it keeps saying "command not found" ...…

pascal b
- 361
- 4
- 16
1
vote
1 answer
"Launch failed. Binary not found" error for C in Eclipse 4.3.0 on OS X 10.9.2
Since early today I have not been able to compile any C programs in Eclipse as it will not create the necessary binaries when I build a project, in fact it won't create a binaries folder at all. I have tried everything I've seen on here to try to…

Jonathan O'Farrell
- 327
- 1
- 2
- 12