Displaying 20 results from an estimated 900 matches similar to: "CreateProcess for Unix binaries"
2009 Apr 07
2
Running an R script from Delphi 7
Gentlepersons:
A long time ago I used to be able to start R (version 2.6.1) from a
Delphi 7 program and run a script by using a procedure like the following:
function StartRAndWait (CommandLine : string) : Boolean;
var
Proc_info: TProcessInformation;
Startinfo: TStartupInfo;
ExitCode: longword;
CreateOK : Boolean;
begin
Result := False;
{ Initialize the structures }
2006 Dec 04
8
Calling R functions in Delphi
Hello All,
We would like to call quantile() function from the R-package STATS in a
Delphi program. If this is possible, could anyone provide us with an
example?
Thanks in advance.
--Anna
-----------------------------------------
Anna Belova
Abt Associates Inc.
4800 Montgomery Ln, St 600
Bethesda, MD-20814
phone: 301-347-5304
fax: 301-652-7530
http://www.abtassociates.com/environment
2010 Aug 23
1
[Bug] [Urgent] CreateProcess Failed internal error (1359)
Hi,
I working on porting an IDE on MacOSX with the help of Wine, And I discover a random bug on wine.
Please use this sample code to reproduce it (to be compiled on Windows):
Code:
/////////////////////////////////////////////////////////////////////////////
int Quit(int aReturnCode)
{
#ifdef _DEBUG
wcout << L"Press Enter to quit";
getchar();
#endif
return aReturnCode;
}
2006 Aug 24
1
[ win32utils-Bugs-5503 ] Process::create() checks return value of CreateProcess against 0, should be false
Bugs item #5503, was opened at 2006-08-23 21:27
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=411&aid=5503&group_id=85
Category: win32-process
Group: Code
Status: Open
Resolution: None
Priority: 3
Submitted By: David Haney (darius42)
Assigned to: Nobody (None)
Summary: Process::create() checks return value of CreateProcess against 0, should be false
2009 Sep 02
1
Question on CreateProcess and handle inheritance
Hi,
I just wanted to make sure that I''m not confused by Michael Buselli''s
comment and patch. As far as I can tell, if you set the bInheritHandle
in the SECURITY_ATTRIBUTES structure that''s passed to CreateProcess to
true, it''s the same as calling SetHandleInformation(handle,
HANDLE_FLAG_INHERIT, HANDLE_FLAG_INHERIT) after the fact.
CreateProcess:
2010 Sep 20
1
Dynamic forking in Win32
I created an application that uses dynamic forking and it works perfect in windows, but fails in wine. Is this a bug or is this feature disabled in Wine?
I don't have wine myself but someone we have testing the app for us does. It's difficult to debug over the net so I was hoping for some help here...
After adding some debug info we've traced a few failure points to a call to
2005 Jun 26
2
Wine and Music Collector. No startup?
Hi.
I'm trying to get my version of the program 'Music Collector' to start
under Wine (20050524) but no luck.
Website: http://www.collectorz.com/music/
(I'm trying to use current version 6.7, build 5)
The program extracts and installs with no problems. It's just that when
I try to run the executable, Wine seems to "go to sleep" and later on
exit.
I've tried
2009 Apr 30
0
CreateProcess and redirected stdout from Linux apps?
I'm using Wine 1.0.1. I have a Win32 application that uses ShellExecute in some places and CreateProcess in others to execute batch files and executables. Under both Windows XP and Wine, both ShellExecute and CreateProcess execute their executables successfully.
However, when using CreateProcess on Windows the output of batch files or console apps is redirected and displayed in a text box
2009 Dec 02
5
[LLVMdev] LLVM MinGW binaries on Vista issue
I'm attempting to use the above as described here
http://stackoverflow.com/questions/1816469/llvm-mingw-installation-on-vista
...and getting the following error when attempting "llvm-gcc -o hello.exe hello.c"
llvm-gcc: CreateProcess: No such file or directory
I've heard it may be due to the way GCC is passing args to CreateProcess as in this thread
2006 Apr 21
2
error in abld build wins udeb
I am trying to compile speex.1.1.12 for Symbian OS but I get lots of
errors:
C:\Programmi\Symbian\7.0s\Series60_v21\Series60Ex\speex-1.1.12\symbian>abld
buil
d wins udeb
make -r -f
"\Programmi\Symbian\7.0s\Series60_v21\EPOC32\BUILD\PROGRAMMI\SYMBI
AN\7.0S\SERIES60_V21\SERIES60EX\SPEEX- 1.1.12\SYMBIAN\EXPORT.make" EXPORT
VERBOSE
=-s
Nothing to do
make -r -f
2009 Jul 30
1
What changed in the R Windows interface from v2.6.2 to v2.7.0?
Dear R-devel,
I would like to launch the Rgui.exe from a Fortran console application (we
will call this FortranCon.exe), that I have written myself. To do this, I
send the command line "C:\Program Files\R\R-X.X.X\Rgui.exe" (where X.X.X is
the version number) as an argument to the
Windows API function CreateProcess (see
http://msdn.microsoft.com/en-us/library/ms682425(VS.85).aspx)
2009 Jul 17
1
[LLVMdev] [PATCH 2/2] Make Program::ExecuteNoWait return a process ID.
---
include/llvm/System/Program.h | 14 ++++++++++----
lib/System/Unix/Program.inc | 17 +++++++++--------
lib/System/Win32/Program.inc | 16 +++++++++-------
3 files changed, 28 insertions(+), 19 deletions(-)
diff --git a/include/llvm/System/Program.h b/include/llvm/System/Program.h
index 14f9e9e..05c73ac 100644
--- a/include/llvm/System/Program.h
+++ b/include/llvm/System/Program.h
@@
2008 Dec 23
3
[LLVMdev] problem running llvm-gcc from LLVM 4.2 binary download for Mingw
i just downloaded LLVM 4.2 binaries for Mingw (including the GCC 4.2
front-end), and received the infamous "llvm-gcc: CreateProcess: no such
file or directory" error message when trying to compile hello.c from the
command-line....
i've already placed to bin directory containing llvm-gcc in my PATH, but
still no luck....
2004 Aug 22
2
permissions, kernel-2.6.8, and wine-20040813
Hi,
Yesterday I upgraded to kernel 2.6.8 on my Fedora Core 2 system. This
caused a problem with the version of wine I'd been using (20040505),
so I upgraded wine to the current version (20040813).
The remaining problem is as follows:
I'm calling wine like this:
wine start.exe vcbuild.bat
and vcbuild.bat contains the following:
set QMAKESPEC=win32-msvc.net
set
2008 Dec 23
0
[LLVMdev] problem running llvm-gcc from LLVM 4.2 binary download for Mingw
Hello, Bob
> i just downloaded LLVM 4.2 binaries for Mingw (including the GCC 4.2
> front-end), and received the infamous "llvm-gcc: CreateProcess: no such
> file or directory" error message when trying to compile hello.c from the
> command-line....
Are you running Vista?
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State
2004 Feb 29
1
Rcmd SHLIB
Ok, I think I may have a path or permissions problem (below). Anyone know which settings I should check?
When I use
"Rcmd SHLIB <filename>"
I get:
C:\Program Files\R\rw1081\bin>Rcmd SHLIB info.diffusion.c
process_begin: CreateProcess((null), dlltool -k --as as --dllname R.dll --def R.
exp --output-lib libR.a, ...) failed.
make (e=2): The system cannot find the file
2010 Aug 19
2
Strange Makefile problem
Hi,
When using the win32 make.exe I get sometimes strange errors :
Code:
process_begin: CreateProcess(C:\windows\temp\make131-2.bat, C:\windows\temp\make131-2.bat, ...) failed.
make (e=1359): Internal error
make[1]: *** [ARM_Packages_Release\_eBayAppWatcherSetupUtil.o] Error 1359
make[1]: *** Waiting for unfinished jobs....
with multithreaded build.
Something similar with g++ win32
2012 Oct 24
1
Exec python script on puppet clinet running on windows
I am trying to execute a python script from manifest file on puppet windows
based client:
exec {''ez_setup.py -U setuptools'':
#command => ''C:\Python27\ez_setup.py -U setuptools'',
cwd => ''C:\Python27'',
path => ''C:\Python27;%PATH%'',
#creates => ''C:\Program,
2011 Oct 06
2
[LLVMdev] [Patch] Build failure on Windows+MinGW (GCC and Clang)
When building LLVM/Clang, I get the following build failure:
[ 4%] Building CXX object
lib/Support/CMakeFiles/LLVMSupport.dir/Signals.cpp.obj
In file included from M:\Development\Source\LLVM\lib\Support\Signals.cpp:33:
M:\Development\Source\LLVM\lib\Support/Windows/Signals.inc:48:17: error:
redefinition of '_IMAGEHLP_LINE64'
typedef struct _IMAGEHLP_LINE64 {
^
2008 Mar 15
1
How to get the stdout of linux process
I noted that when using createprocess, it is possible to get the output of a dos
batch file. However if a linux script or program is called instead, it run but
the stdout of linux processing can not be read by wine. Does anyone know how to
do it?
regards,