Questions tagged [executable]

An executable is a binary file that can be executed by the operating system.

An executable is a binary file that can be executed by the operating system.

3697 questions
1
vote
1 answer

How to make a .class file with dependencies into an executable file

I'm still new to java and this is my first time trying to make something like a program that works without having jdk installed. So I have my EditExcel.java and .class along with 6 .jar files which get imported in the EditExcel file via import. …
Gorel
  • 11
  • 3
1
vote
1 answer

cx_Freeze to include dependent py files

I am creating the installer for python application by using below setup file from cx_Freeze import setup, Executable buildOptions = dict(excludes = ["tkinter"], includes =["idna.idnadata"], optimize=1) setup(name = "SoftwareGateway" , …
Sagar
  • 1,115
  • 2
  • 13
  • 22
1
vote
0 answers

How to create a Python Executable that can run other python-files stored in a folder?

Is it possible to create a Python Executable file (using PyInstaller or similar) that can in its code access other Python-files stored in a specific folder? The reason for that it MUST be an Executable is that the script sometimes must be run from…
mhelmers
  • 13
  • 2
1
vote
0 answers

How do I turn a python file, which uses other files, into an executable file?

I'm fairly new to python, so I'm still not aware of the proper terminology or the intricacies of this language. Right now, I'm creating a program that is designed to mess with the user (adjust the brightness, change the desktop background, play…
Boticus
  • 11
  • 4
1
vote
1 answer

Pyinstaller does not properly include numpy in Mac bundle

If I include numpy in my script the bundle application does not even open. However, if I run the application from the console everything is fine. So: pyinstaller -w myScript.spec with import numpy as np in one of the modules does not create a…
kbr85
  • 1,416
  • 12
  • 27
1
vote
1 answer

Blocking of an .exe download on firefox wrapped with launch4j

I use launch4j to wrap a java executable with an embedded jre, my goal is to put this executable on an apache2 server to make it available to my clients to download and install. The problem: when I try to download it from firefox my antivirus blocks…
Nadir Fouka
  • 452
  • 4
  • 14
1
vote
0 answers

How are metadata symbols used in Swift standard library?

When an empty file is supplied to the Swift compiler, it only generates a couple of fairly obvious symbols: echo '' > test.swift swiftc -c -parse-as-library -o test.o ./test.swift nm test.o prints this: 0000000000000000 S…
Max Desiatov
  • 5,087
  • 3
  • 48
  • 56
1
vote
1 answer

Taking input when executing binary in Go

I am using below code snippet :- command:= exec.Command("./"+order) out, err := command.Output() if err != nil { log.Println(err) } fmt.Println(string(out)) here, "order" is the variable with name of binary in the current directory. When I…
1
vote
1 answer

Makefile not generating object code or executable

I'm trying to write a makefile that generates assembly code, object code, and an executable from a .c file. This is the contents of my makefile: good_echo.s: good_echo.c gcc -S -fstack-protector-all good_echo.c good_echo.o: good_echo.s gcc…
1
vote
1 answer

How to use clang to create a windows binary

I have installed clang on my Windows 10 machine. $ clang --version clang version 6.0.1 (tags/RELEASE_601/final) Target: x86_64-pc-windows-msvc Thread model: posix InstalledDir: C:\Program Files\LLVM\bin With it, I can compile C and C++ sources and…
Bram
  • 7,440
  • 3
  • 52
  • 94
1
vote
1 answer

Why does do_execve() perform executable verification check in two steps instead of one?

Understanding the Linux Kernel says about the implementation of execve(): do_execve( ) performs the following operations: Dynamically allocates a linux_binprm data structure, which will be filled with data concerning the new executable…
Tim
  • 1
  • 141
  • 372
  • 590
1
vote
0 answers

How to package a Node 10 application as a signable executable for macOS?

I've been scouring the web and come across a few options for packaging, such as pkg and node-packer, but all of these options have a fatal sticking point. pkg: Works great, but cannot sign the executables for macOS (something about extra Python…
Slbox
  • 10,957
  • 15
  • 54
  • 106
1
vote
1 answer

How to open exported .exe Jar file or RUN.bat file in different computer?

I recently made a game and trying to distribute to my friends. I exported .exe Jar file in Eclipse, and tried to open it to see if it works, but somehow it didn't so I had to manually make RUN.bat file, and it worked. So I zipped those two files…
James Kang
  • 61
  • 5
1
vote
1 answer

AddressOfEntryPoint is beyond the end of the file

I'm trying to understand what the AddressOfEntryPoint in the COFF header. I have a "nothing" .NET exe: class Program { public static void Main() { } } (I've compiled it as an x86 application) The values I get for the standard fields in…
BanksySan
  • 27,362
  • 33
  • 117
  • 216
1
vote
1 answer

Make script executable from within Geany

I edit and test a lot of scripts using Geany. Is there a way to make an open script executable using Geany instead of having to do it using my file manager?
fixit7
  • 121
  • 7
1 2 3
99
100