Tagged Questions
The executable tag has no wiki summary.
45
votes
2answers
4k views
Running a Haskell program on the Android OS
Forenote: This is an extension of the thread started on /r/haskell
Lets start with the facts:
Android is one awesome Operating System
Haskell is the best programming language on the planet
...
35
votes
7answers
11k views
Finding current executable's path without /proc/self/exe
It seems to me that Linux has it easy with /proc/self/exe. But I'd like to know if there is a convenient way to find the current application's directory in C/C++ with cross-platform interfaces. I've ...
25
votes
15answers
4k views
Packaging Java apps for the Windows/Linux desktop
I am writing an application in Java for the desktop using the Eclipse SWT library for GUI rendering. I think SWT helps Java get over the biggest hurdle for acceptance on the desktop: namely providing ...
21
votes
14answers
4k views
What are the uses of self modifying code?
Is there any real use for self modifying code?
I know that they can be used to build worms/viruses, but I was wondering whether there is some good reason that a programmer may have to use self ...
20
votes
6answers
2k views
How can I make an EXE file from a Python program?
I've used several modules to make EXEs for Python, but I'm not sure if I'm doing it right.
How should I go about this, and why? Please base your answers on personal experience, and provide ...
17
votes
8answers
7k views
Executable war file that starts jetty without maven
I'm trying to make an "executable" war file (java -jar myWarFile.war) that will start up a jetty webserver that hosts the webapp contained in the war file I executed.
I found a page that described ...
16
votes
4answers
4k views
How can I package my Perl script to run on a machine without Perl?
People also often ask "How can I compile Perl?" while what they really want is to create an executable that can run on machines even if they don't have Perl installed.
There are several solutions, I ...
15
votes
4answers
26k views
Java: export to an .jar file in eclipse
Im trying to export a program in eclipse to a .jar file. To my project in I have added some pictures and pdf. When im exporting to jar file, it seems that only the main has ben compiled and exported. ...
15
votes
4answers
7k views
How to find out which version of the .NET Framework an executable needs to run?
I've got an executable file, and I would like to know which versions of the .NET framework this file needs to be started.
Is there an easy way to find this information somewhere?
(So far I tried ...
14
votes
7answers
447 views
Why are “Executable files” operating system dependent?
I understand that each CPU/architecture has it's own instruction set, therefore a program(binary) written for a specific CPU cannot run on another. But what i don't really understand is why an ...
14
votes
7answers
478 views
Am I coding for an OS or the Processor?
It is said that by using C/C++, one can write 'native' programs - that run on the platform. I am confused about what is considered native - the processor architecture or the OS version?
For example:
...
14
votes
20answers
2k views
How to make a C++ EXE larger (artificially)
I want to make a dummy Win32 EXE file that is much larger than it should be. So by default a boiler plate Win32 EXE file is 80 KB. I want a 5 MB one for testing some other utilities.
The first idea ...
14
votes
4answers
662 views
One big executable or many small DLL's?
Over the years my application has grown from 1MB to 25MB and I expect it to grow further to 40, 50 MB. I don't use DLL's, but put everything in this one big executable.
Having one big executable has ...
14
votes
11answers
860 views
Is There a Way to Tell What Language Was Used for a Program?
I have a desktop program I downloaded and installed. It runs from an .exe file.
Is there some way from the .exe file to tell what programming language was used to write the program?
Are there any ...
14
votes
4answers
1k views
what's in a .exe file?
So a .exe file is a file that can be executed by windows, but what exactly does it contain? Assembly language that's processor specific? Or some sort of intermediate statement that's recognized by ...
13
votes
6answers
510 views
How to embed a file into an executable file?
I have two problems, the first has been solved.
Current problem
If I embed a file that requires a library to load it, such as a jpeg image or a mp3 music, I will need to use the file as input to the ...
13
votes
13answers
2k views
What Can I Do To Reduce My Executable's Size (Delphi)?
I release a single executable (.EXE) for a desktop program using Delphi 2009. I have no external DLLs or resources that I need for the program to run.
I use two components: LMD Innovative's ELPack ...
13
votes
9answers
3k views
Compiling a java program into an exe [closed]
Possible Duplicate:
How do I create an .exe for a Java program?
I've just made a simple program with eclipse and I want to compile it into an exe file, but can't seem to found out how to do ...
12
votes
8answers
793 views
Antivirus False positive in my executable
I just ran into an annoying problem. Suddenly Avira AntiVir started to flag one executable from my software as being a virus.
As the default action from almost any user is to click OK and Avira ...
11
votes
8answers
541 views
Is it safe to recompile an executable while it's running?
What happens if I recompile an executable while it's running? Does the operating system read all of the executable's contents into memory when it starts running it, so it will never read the new ...
10
votes
5answers
3k views
Embed a JRE in a Windows executable?
Suppose I want to distribute a Java application.
Suppose I want to distribute it as a single executable. I could easily build a .jar with both the application and all its external dependencies in a ...
10
votes
3answers
866 views
Is there a Perl equivalent to Python's `if __name__ == '__main__'`?
Is there a way to determine if the current file is the one being executed in Perl source? In Python we do this with the following construct:
if __name__ == '__main__':
# This file is being ...
10
votes
12answers
15k views
Producing executable jar in NetBeans
I'm using NetBeans 6.5 and for some reason it won't produce executable jar "out of the box".
I set my project to be the main project, defined main class in the project properties "run" menu and it ...
10
votes
4answers
6k views
How To Store Files In An EXE C#
Alright, so I'm working on programming my own installer in C#, and what I'd like to do is something along the lines of put the files in the .exe, so I can do
File.Copy(file, filedir);
Or, if this ...
10
votes
8answers
21k views
Hide Command Window of .BAT file that Executes Another .EXE File
This is a batch file in Windows.
Here is my .bat file
@echo off
copy "C:\Remoting.config-Training" "C:\Remoting.config"
"C:\ThirdParty.exe"
This works fine except the .bat file leaves the ...
10
votes
4answers
2k views
Python deployment and /usr/bin/env portability
At the beginning of all my executable Python scripts I put the shebang line:
#!/usr/bin/env python
I'm running these scripts on a system where env python yields a Python 2.2 environment. My scripts ...
9
votes
5answers
152 views
How can I create an executable file?
All texts on how to create a compiler stop after explaining lexers and parsers. They don't explain how to create the machine code. I want to understand the end-to-end process.
Currently what I ...
9
votes
3answers
241 views
Do ghc-compiled binaries require GHC or are they self-contained?
If a friend wants to run my Haskell binaries, does he have to first install Haskell, or can he immediately run the binary by itself?
Is the answer the same on Mac, Windows, and Linux?
9
votes
8answers
694 views
Why aren't EXE's in binary?
Why is it that if you open up an EXE in a hex editor, you will see all sorts of things. If computers only understand binary then shouldn't there only be 2 possible symbols seen in the file? Thanks
9
votes
5answers
1k views
How to check if a program is using .NET?
Can we check if a running application or a program uses .Net framework to execute itself?
9
votes
3answers
267 views
What's the advantage of having an 8-letter process?
If you run Sticky Note in Windows 7,its process, is called StikyNot.exe. Several other Windows processes keep their process names under 8 letters.
Why do they do that? What is the advantage? Are ...
9
votes
1answer
393 views
How to write a lightweight executable like uTorrent [closed]
Possible Duplicate:
Programming slim C++ programs (like uTorrent) for Windows
uTorrent has always impressed me with its 270KB executable and small memory footprint while competing with ...
9
votes
2answers
1k views
Should I change my Image Base?
In Delphi the Image Base linker option defaults to 00400000.
Per the help:
Specifies the preferred load address
of the compiled image. This value is
typically only changed when compiling
...
9
votes
1answer
1k views
Compiling Binaries with Clozure Common Lisp
Given a simple program such as the following, how would you:
compile it as a seperate image file to be loaded by the implementation, and what command line arguments would you use to load it?
...
9
votes
1answer
3k views
Determining application path in a Python EXE generated by pyInstaller
I have an application that resides in a single .py file. I've been able to get pyInstaller to bundle it successfully into an EXE for Windows. The problem is, the application requires a .cfg file ...
8
votes
10answers
660 views
Is it possible to execute code from the stack in standard C?
The following code doesn't work as intended but hopefully illustrates my attempt:
long foo (int a, int b) {
return a + b;
}
void call_foo_from_stack (void) {
/* reserve space on the stack to ...
8
votes
6answers
1k views
How to prevent a Linux program from running more than once?
What is the best way to prevent a Linux program/daemon from being executed more than once at a given time?
8
votes
3answers
439 views
How important is it to digitally sign our executables?
We produce a content management system. It's a DB-based system, used only by businesses and organizations, and never downloadable from the Internet. I.e., it's not the kind of software someone might ...
8
votes
4answers
1k views
Running an AnyCPU application as 32-bit on a 64-bit OS
Is there a way to execute a .NET application compiled under AnyCPU as a 32-bit application when running in a 64-bit Windows environment without recompiling as x86?
8
votes
4answers
1k views
Determining Which Compiler Built a Win32 PE
How can one determine which C or C++ compiler was used to build a particular Windows executable or DLL? Some compilers leave behind version strings in the final executable, but this seems to be rarer ...
8
votes
12answers
3k views
Reading/Writing machine code
I am not well acquainted to the compiler magic. The act of transforming human-readable code (or the not really readable Assembly instructions) into machine code is, for me, rocket science combined ...
7
votes
1answer
173 views
How can I use Ruby to create an “EXE” like DropBox used Python?
I have a project which is similar to DropBox. I need to automatically push certain folders up to S3 from both Windows and Mac machines. DropBox won't do exactly what I need so I can't really use it. ...
7
votes
4answers
161 views
Assembly-level function fingerprint
I would like to determine, whether two functions in two executables were compiled from the same (C) source code, and would like to do so even if they were compiled by different compiler versions or ...
7
votes
4answers
106 views
How to figure out which methods increases size of 'exe'
I'm trying to write my first 'demoscene' application in MS Visual Studio Express 2010. Suddenly I realized, that my binary expanded from 16kb to ~100kb in fully-optimized-for-size release version. My ...
7
votes
5answers
927 views
Visual Studio 2010 generated executable size larger
I've got an C++ application originally written with Visual Studio 6.0
The application is standard and raw Win32 API, no MFC(*Edit 2), no .NET, statically linked, multi-threaded executable.
I have ...
7
votes
2answers
357 views
Making gcc generate only machine code
More specifically, I would like to produce a file that I can load into memory (for example with mmap) and then jump to the start of that memory to run the code. Ideally, I'd like the option of either ...
7
votes
2answers
1k views
Making a Ubuntu executable
i have made a program in C using the gcc compiler. Right now it has no GUI components. I am compiling it with makefile and running it in the terminal. I need to deploy it so that the executable is ...
7
votes
3answers
268 views
Is there an ideal size for executable modules on Windows?
I've been taking note of the .exe file size of many applications.
I saw that Visual Studio 2005 has an .exe size of 453KB, and VS2008 of 1.04MB because they divide the application into many parts ...
7
votes
7answers
856 views
Why don't C header files increase the binary's size?
I wrote the following C++ program
class MyClass {
public:
int i;
int j;
MyClass() {};
};
int main(void)
{
MyClass inst;
inst.i = 1;
inst.j = 2;
}
...
7
votes
3answers
1k views
What is the smallest possible Windows (PE) executable?
As a precursor to writing a compiler I'm trying to understand the Windows (32-bit) Portable Executable format. In particular I'd like to see an example of a bare-bones executable which does nothing ...