* Compiled computer programs are sometimes called "binaries". Instead of this tag, use [tag:executable] for this sense.
Questions tagged [binaries]
191 questions
0
votes
2 answers
C++ Single Makefile Multiple Binaries
I have a project with the following structure
Top Level Project Dir
->Other Source Code Folders
->Experiment Binaries
->Experiment 1
-srcs.cpp
-main.cpp
…

lufthansa747
- 1,923
- 3
- 26
- 39
0
votes
1 answer
copy binaries from /sourcedir and its subdirs to /destdir
Copy all binaries from /sourcedir to /destdir. Basically, all files with: no extension, and all files with *.a, *.so, *.ko, exclude from copy: *.c, *.h files. Copy files from all subdirs except the sub-directory named "excludeDir".
I have tried the…

masher
- 53
- 9
0
votes
1 answer
Should app binaries be in mounts or volumes or should they exist only within a docker container?
What are the best practices regarding this? Say, for example, I am running a java or python app. So I would run a java or python based container but where should my apps live? Should they be in a folder within the base image or should they live in a…

Grubby
- 33
- 4
0
votes
2 answers
docker binaries on rhel7 not listed in systemctl
I am using docker binaries on RHEL7 where daemon started using
dockerd &
I also need to do some configuration for which I need to stpr start the docker but I have to kill the process and finding no way out to stop the docker daemon.
I have tried:…

ali
- 11
- 3
0
votes
1 answer
Can malware binaries be in packed form?
Recently I'm reading malware analysis. I'm going through this Malware Repository (https://github.com/ytisf/theZoo). Here we can find malware binaries. Can binaries be in packed form? If so, how can we say that these binaries are packed or not?
PS:…

Lelouch
- 23
- 3
0
votes
2 answers
How do I install Hyperledger Fabric's binaries only?
I would like to install/download the HLF binaries, without the images and fabric-samples. How do I do that?
This is what I've tried so far:
I've followed the instruction on https://hyperledger-fabric.readthedocs.io/en/release-1.4/install.html, but…

Ludo
- 109
- 3
- 11
0
votes
0 answers
How to make .NET Code Output Smaller Binaries
I'm working on a UWP app where it's important to reduce the size of the app. Recently, I discovered that simply adding 6 await statements increased the .dll size by 20KB which I thought was an unexpectedly large amount but made sense when I realized…

Muhammad Rehan Saeed
- 35,627
- 39
- 202
- 311
0
votes
1 answer
define ffmpeg binaries path dynamically in php depending on OS
I'm trying to define the ffmpeg binaries path dynamically in php depending on OS...
Here's my code:
// Check if OS is Windows
if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
$OS = 'win';
// 'This is a server using Windows!';
}
require ABSPATH .…

Hue Man
- 309
- 3
- 14
0
votes
0 answers
Get output of process without forbidden api
I'm trying to get the output of a process that executes a binary file like this:
Runtime rt = Runtime.getRuntime();
String[] command = new String[]{this.binaryPath, text};
Process p = rt.exec(command);
Scanner s = new…

ninesalt
- 4,054
- 5
- 35
- 75
0
votes
1 answer
Java runtime binary shows different results
I'm trying to run a binary using my Java code but it's giving me a different result than when I would run it myself from my terminal.
Java code:
Runtime rt = Runtime.getRuntime();
String path = System.getProperty("user.dir") +…

ninesalt
- 4,054
- 5
- 35
- 75
0
votes
0 answers
IOS Application validation failed Xcode
My app is building and running without errors, but when I try to archive and verify in Xcode as preparation to App Store submission I get this error:
Code signing "RestKit.framework" failed.
When I look in the logs I find this problem:
Didn't find…

Mihai Manea
- 11
- 5
0
votes
0 answers
Make use of node binary in android
I have managed to get a binary for node 7.2 and I would like to use it to call a node module from an application in Java. Is there a way of achieving this? On Windows it's fairly straightwordward, you ship the binary and call it from within your…

J-Cake
- 1,526
- 1
- 15
- 35
0
votes
2 answers
What might cause a slight difference in binaries when compiled at different times using make?
I compiled my code using the make utility and got the binaries.
I compiled the code again with a few changes in makefile (-j inserted at some points) and got a slight difference in the binaries. The difference was reported by "beyond compare". To…

ankit
- 77
- 1
- 4
0
votes
1 answer
SQL Server binaries compatibility
We are currently referencing these binaries in our .NET assembly:
Microsoft.SqlServer.ConnectionInfo 12.0.0.0
Microsoft.SqlServer.Management.Sdk.Sfc 12.0.0.0
Microsoft.SqlServer.Smo 12.0.0.0
Version 12 of these was originally distributed with SQL…

masiton
- 147
- 2
- 10
0
votes
1 answer
How can I build and run my gradle project, when it needs binary library files (JInput)?
I'm trying to use JInput for my project, and the library needs some binaries for my application to run.
I've discovered that, the required binaries are inside the library. But still, I get an UnsatisfiedLinkError when doing a gradle run because it…

birgersp
- 3,909
- 8
- 39
- 79