search for: borlands

Displaying 20 results from an estimated 250 matches for "borlands".

Did you mean: borland
2005 Oct 26
1
Borland C++ and [R] dyn.load() for windows
Hi, I compiled a C program file on Borland C++ 5.5 compiler to get one dll output (as instructed in the file readme.package). The C program file is just the example on page 31 of "writing R extensions": void convolve(double *a, int *na, double *b, int *nb, double *ab) { int i, j, nab = *na + *nb - 1; for(i = 0; i < nab; i++) ab[i] = 0.0; for(i = 0; i < *na; i++) for(j = 0; j
2001 Apr 05
2
Borland C++-5.5 (free) compiler does not install(?)
Hello! I'm trying to install Borland C++ 5.5 free compiler into my RH7 Linux box but I can't get it to work. Running the installer brings a blank dialog with "Prev", "Next" and "Cancel" buttons but nothing more.. and pressing the buttons doesn't do anything and the dialog doesn't close. I waited for more than 15 minutes (I read it in FAQ
2001 Feb 22
1
Borland C++ 5 patch 1 and wine
Hy, I'am trying to compile a little project with Borland C++ 5 on my redhat 7.0 box with the rpm package from linux-easy for wine. The IDE is working correctly, compilation goes ok but when comes time to link all object files together Borland c++ stop to work. I tried to export project file and do a make, it is the same problem ilink32.exe seems to hang.... Thanks for help Jean-Francois
2003 Jul 08
2
OMF static LIBs for Borland ?
Hi, I have a problem and I hope that someone, possibly someone from Vorbis developing team, could help me out. My question is: "Are there OggVorbis static libraries in OMF format that can be statically linked to a Borland C++ Builder compiled applications?" Static LIBs that I found in Vorbis Win32 SDK are in COFF format, and therefore I was only able to link dynamically to DLLs.
2006 Feb 02
1
Borland Database Engine related installer issue (Portal GT-D)
I am attempting to install the Portal GT-D mud client (www.gameaxle.com) on top of wine-0.9.6-1.fc4 which I then reconfigured using winetools-0.9-3jo after failing to install MS Office XP Pro (which I never did get to work either, but I found some references saying that it wasn't likely to). IE6 installed and runs for what it is worth. I run the setup program in the style the wine tools use
2000 Jan 21
1
DLLs using Borland
I wrote a DLL in C that does some MCMC stuff. It is compiled using Borland's C++ Builder, version 3.0 (build 3.70) on a Windows 98 machine. The DLL loads and runs just fine. But then if I subsequently call R's plot() function, I get an illegal operation message and R crashes. In fact, I've found that this happens even if I merely load the DLL, don't ever run it, and then try to
2002 Jun 27
2
Borland compiler
Has anyone compiled the ogg and vorbis libraries with borlands c compiler (bcc32)? If so, are there any makefiles or similar available which can make it easier for me to do the same? /Erik <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To unsubscribe from this list, send a message to '...
2017 Apr 27
3
recognise DW_AT_SUN_amd64_parmdump dwarf attribute
sun created this tag for identifying functions that dumped their register arguments onto the stack. this is enough for llvm-dwarfdump to recognise and print the attribute. hopefully someone will commit it. cheers, dlg Index: include/llvm/Support/Dwarf.def =================================================================== --- include/llvm/Support/Dwarf.def (revision 301500) +++
2006 Mar 25
0
Access Violation running an application calling Borland libraries vcljpg60.bpl & vcl60.bpl
Access Violation running an application calling Borland libraries vcljpg60.bpl, vcl60.bpl. I am using Wine 0.9.10 and Mandriva LE2005. Although I can run several windows application successfully, I have never been able to run one - Heredis8 - that seems to be using Borland libraries (vcljpg60.bpl, vcl60.bpl, and others). The output from running "winedbg Heredis8.exe" is below. There
2001 Sep 28
0
Borland compiler issues
Where can I download stable RC2 source code? I've downloaded the nightly CVS, but it seems unusable right now. The Windows SDK does not appear to include source code or Borland compatible libraries. One thing I've noticed about the nightly CVS code is that the nested alloca() calls seem to confuse Borland's compiler. I had to change code in mapping0_forward() from:
2008 Jul 19
1
Re: Winelib: How can I compile a Borland C++ Builder application
N?stor Amigo Cairo wrote: > Hi! > > I'm new to winelib. I'm trying to port a Borland C++ Builder 6.0 > application, but I need VCL library: vcl.h. > > Any ideas?? I would want to make it run natively on Linux. You can't. Winelib still requires Wine to run it. It's a library not an executable. If you want to write native Linux application that can run by itself
2004 Oct 25
0
speex headers and borland c++ builder (bcb)
hello, I try to include the speex header to a bcb project. Speex headers are the latest one. My first problem was to use the lib file with bcb. I solved this issue by restructing the lib file. The second problem is to access the constant called "extern const SpeexMode speex_nb_mode;" through borland's c++ builder. I could analyze the export table of the libspeex.dll. Unfortunately I
2001 Sep 03
1
Borland Database Engine error.
hello everybody , somebody know where I can get more information about the error " Borland Database Engine Error " I have tried the SHAREDMEM...= "9000" solution but the problem persist anybody know's anything ?? Thanks. end ################################################### ## Universidade Cat?lica de Pelotas ##
2008 Jul 19
1
Re: Winelib: How can I compile a Borland C++ Builder application
N?stor Amigo Cairo wrote: > So I will need to rewrite the application to run on Linux, but this > sounds strange, doesn't it?? I have not completely understood then the > purpose of winelib. Do you mean that it is not possible to build an > application from source (written using Win32 API) using gcc on Linux > and executing it natively?? Correct. You can't run it directly
2011 Jan 25
1
Borland Quatro Pro 5.0 for Windows help
I need to get this old Windows (3.1 era) version of Borland Quatro Pro v5.0 running so I can access old and important information. Yes, this is an old program, but that should probably make it easier or more compatible (I would think). This version came out the year after wine was first created. Here is the error I am getting when I install it (at the end of the installation process) and
2000 Aug 22
2
Borland modification
The following block in os.h needs to be changed for vorbis to work under Borland: Original: #ifndef __GNUC__ #ifdef _WIN32 # define alloca(x) (_alloca(x)) # define rint(x) (floor((x)+0.5)) #endif #endif New: #ifndef __GNUC__ #ifdef _WIN32 # ifdef __BORLANDC__ # include <malloc.h> # else # define alloca(x) (_alloca(x)) # endif # define rint(x) (floor((x)+0.5)) #endif
2017 Apr 27
3
recognise DW_AT_SUN_amd64_parmdump dwarf attribute
> On Apr 27, 2017, at 8:38 AM, David Blaikie <dblaikie at gmail.com> wrote: > > This'll need a test case, in any case. In case you're wondering, one way to do this would be to add an assembler source file, compile it and run it through llvm-dwarfdump. Alternatively you can use the new yaml2obj tool that is being developed. -- adrian > > Adrian/Paul: Pondering
2009 Jan 22
6
Application will only run when executed from its directory
Hi everyone! I am running Wine 1.0 on Linux Mint 5.1. I have a custom developed program that was designed in Delphi using the Borland Database library that will only run correctly if executed from the directory it is contained in. It will not run from the start menu nor will it run from a launcher that I have built on the Desktop. I figure it has to be something with the path referencing. I
2005 Jul 04
0
A program using Borland Interbase interface.
Hi, I have a program here which runs on a firebird database. It's built in borland c++ builder, so any errors (exceptions) result in: Assertion failed: !"bogus context in _ExceptionHandler()", file xx.cpp, line 3071 and: Abnormal program termination That's why I have problems with debugging. Anyway, this program connects to a firebird database throught fbguard (even if
2006 Jan 12
1
Problem compiling testenc.c on WinXP(newbie)
Hello, I want to compile testenc.c with Borland C/C++ compiler, but get a lot of errors. What's wrong? Borland C++ 5.5.1 for Win32 Copyright (c) 1993, 2000 Borland testenc.c: Turbo Incremental Link 5.00 Copyright (c) 1997, 2000 Borland Error: Unresolved external '_speex_encoder_init' referenced from D:\SPEEX\TESTENC.OBJ Error: Unresolved external '_speex_decoder_init'