Questions tagged [binaries]

* Compiled computer programs are sometimes called "binaries". Instead of this tag, use [tag:executable] for this sense.

191 questions
2
votes
2 answers

How to compile NPM modules to binaries for all platforms

how to convert NODE MODULES into binaries to support all platform. Windows x86 Windows X64 Linux OS X and load those binaries in Node application instead of npm modules. ?
Shan Khan
  • 9,667
  • 17
  • 61
  • 111
2
votes
1 answer

Error in using Lowe's SIFT Matlab program on Mac OS X

I'm trying to use David Lowe's Matlab demo of SIFT in Matlab on my Mac. But I'm constantly getting the error: [image, desc, locations] = sift('book.pgm') /bin/bash: ./sift: cannot execute binary file Error using sift (line 57) Invalid keypoint file…
akshatt
  • 21
  • 3
2
votes
1 answer

Why does the Numpy community provide 32bit binaries installer but not 64bit?

The Numpy community provides 32bit binaries installer here but no 64bit binaries installer. If they were no binaries installer at all, it would be coherent, and I would understand it as a deliberate choice meaning "You should compile and build it…
Basj
  • 41,386
  • 99
  • 383
  • 673
2
votes
0 answers

How can I use the pre-compiled binaries to update to clang 3.3 on Mac OS 10.6.x?

I'm trying to install/update my clang from Apple clang version 1.7 (tags/Apple/clang-77) (based on LLVM 2.9svn) to clang version 3.3. I've downloaded the pre-compiled binaries into usr/bin/, as suggested by other posts (How can I update clang to 3.3…
anon82
  • 71
  • 6
2
votes
2 answers

C++ windows binaries: conditions to be used with MinGW

I am new to C++ and I am now struggling with compiling and linking. Recently I have been using cmake and make to recompile a library (mlpack) that makes usage of Boost (Cmake does not find boost 1.51 (windows 8)). In a first attempt, I downloaded…
Vince
  • 3,979
  • 10
  • 41
  • 69
2
votes
5 answers

Difference Between C and C++ Executables?

I know there are differences in the source code between C and C++ programs - this is not what I'm asking about. I also know this will vary from CPU to CPU and OS to OS, depending on compiler. I'm teaching myself C++ and I've seen numerous references…
Tango
  • 649
  • 1
  • 12
  • 29
2
votes
3 answers

Exporting to Excel without MS office installed for Wpf Product

I have a small wpf product which requires exporting data to excel with out excel installed on the client machine.How to achieve this in C#.After exporting, this excel can be opened by Open office. All I wanted is to save excel file to the client…
umsateesh
  • 163
  • 1
  • 1
  • 12
2
votes
1 answer

Are there pre-compiled binaries of zxing for Windows

Is there a pre-compiled version of zxing for Windows? Both the Java version or the C++ port will do. I could find source packages on their site.
sashoalm
  • 75,001
  • 122
  • 434
  • 781
2
votes
2 answers

Erlang binary pattern matching fails

Why does this issue a badmatch error? I can't figure out why this would fail: <> = <<"2a01:e34:ee8b:c080:a542:ffaf:*:*">>.
jshadyjlo
  • 133
  • 7
2
votes
1 answer

Programatically retrieving path info for TFS "instrumented binaries" via the data warehouse

Does anyone know how to programatically (using the TFS API) determine what binaries were set to be instrumented as part of a build on TFS? For example, after running a build on TFS with code coverage it shows this in the output: ... -> 2 binaries…
jd314159
  • 365
  • 2
  • 14
1
vote
0 answers

Installing Xfbdev on an initramfs

I hope this isn't a stupid question. I've got a kernel and an initramfs containing busybox (all booting ok). Im trying to install/run Xfbdev, i thought it may have been a case of simply running the binary but it appears not. When i try to run the…
Xleedos
  • 948
  • 2
  • 9
  • 17
1
vote
0 answers

Unexpected Behavior When Modifying PE Section Characteristics on Windows 11

I am currently working on a technical book and exploring the characteristics of sections within a Windows Portable Executable (PE) file. Specifically, I have been experimenting with a Python script to modify the characteristics of sections like the…
1
vote
0 answers

How to embed the binarized python package in C++ proejct

I have the Python Project and C++ Project. Python package will be used in C++ project by using python.lib like below code Py_Initialize(); auto modulePath = "."; PyObject* sysPath = PySys_GetObject("path"); PyList_Append(sysPath,…
Ben choi
  • 23
  • 2
1
vote
0 answers

Latest gnuplot for Windows 32

There are no precompiled builds for Windows 32 bit for a long time. The links here for Windows binaries provided erlier by Dr. Matsuoka are dead. I tried to compile from sources using Msys2 & mingw, but there are so many hidden and/or unobvious…
Alx
  • 133
  • 3
1
vote
1 answer

Make file for many binaries from subdirectories

I have been trying to create a makefile that takes multiple sources in a file tree and produces an individual binary for each source. My current project is structured like so: topdir/ bin/ [Other Directories] Gamma/ …
David
  • 11
  • 2