2
votes
3answers
74 views
Can I distribute a modified GPL binary which I use from my closed source application
This is very similar to other questions, but none of the other ones quite answer it, so please read through fully before shouting at me :)
(See e.g. http://stackoverflow.com/quest …
0
votes
1answer
35 views
Pack program *and* dynamically loaded files into single executable? (python + pygame, or language agnostic)
There are plenty of great answers to questions about making a standalone executable, but I can't figure out how to pack art assets (or dynamically loaded files) into it as well. W …
0
votes
1answer
66 views
Closest equivalent to subprocess.communicate in Haskell
I want to do a popen() / python's subprocess.communicate from Haskell - start a program, give it stdin, and get its stdout/stderr. What's the most direct / Haskellish way to do thi …
1
vote
3answers
54 views
Getting output from one executable in an other one
Hi there.
I'm currently trying to get the output of an executable console-app into an other one. To be exact, a little overview of what I'm trying to do:
I have one executable wh …
1
vote
4answers
77 views
How to create a .NET executable through a .NET windows forms application?
As described in the title I would like to develop a Windows Forms Application in .NET that is capable of creating at run-time another .NET command line or windows form executable a …
1
vote
1answer
13 views
Easiest language to produce a Windows executable to prefix running another executable with system calls?
I want to run some system commands (to fix things) before running an executable. I have a reasonably locked down (work) Windows XP system and so can't change what a shortcut points …
0
votes
1answer
93 views
Getting the absolute path of the executable, using C#?
Have a look at this pseudocode:
string exe_path = system.get_exe_path()
print "This executable is located in " + exe_path
If I build the above program and place the executable i …
0
votes
4answers
160 views
How to run a C program in DOS prompt
I want to run a C program in DOS prompt. Is it possible?
1
vote
8answers
142 views
Is there any way to make a dual executable file for Mac/Windows?
I'm looking for a way to make a dual executable file for Windows/Mac. That is, I can execute the file in either OS and it would run some piece of code that I want for that OS. Th …
3
votes
3answers
62 views
How can I determine the location of disassembled code within an executable?
Hi all,
I've got an executable file (C++, i386, compiled under MacOS/X Tiger, if it matters) that contains a bug. The fix for the bug is straightforward -- there's a place in the …
4
votes
4answers
116 views
How exactly do executables work?
I know that executables contain instructions, but what exactly are these instructions? If I want to call the MessageBox API function for example, what does the instruction look lik …
1
vote
3answers
89 views
Writing a native language compiler.
I've to implement my custom native-compiled Windows programming language. Is there an easier way then translating it to ASM, or translating it to C/C++ and then use a C/C++ compile …
1
vote
2answers
46 views
What is the bss section of an image?
I am trying to understand PE file formats and there are many sections. What is the bss section? Is that fluid and data written to that section can be overwritten anytime? Is that a …
1
vote
6answers
165 views
Run exe from webpage
We have an internal page that I want to use to run an executable that updates some files on the server. In other words, rather than logging in to the server every time I need to ma …
1
vote
5answers
120 views
Does code in header file increases binary size?
Hello there
Consider this:
class Foo{
void func1(){
/*func1 code*/
}
void func2(){
/*func2 code*/
}
};
Case 1: class Foo in …
