search for: bcc32

Displaying 8 results from an estimated 8 matches for "bcc32".

Did you mean: cc32
2005 Jan 20
2
Compiling wxRuby 0.6 with Borland C++ Compiler
I''m trying to recompile wxRuby 0.6 using Borland''s C++ Compiler (version 5.5.1). So far I was able to do the following: 1) Recompile a working version of ruby V1.8.1 executable using bcc32 2) Recompile a working version of wxWindows 2.4.2 using bcc32   However for wxruby, I''m having some problems with the Makefile which I fixed. Now when I''m compiling the wxRuby wrapper classes like htmlprocessor.cpp i''m getting the following error: E2167: c:\tools\bcc\in...
2007 Apr 08
3
[LLVMdev] C++ -> C translation problems
...r : public File { public: showError(void); ~showError(void); }; showError::showError(void) { // } showError::~showError(void) { // } =================================================== The acid is the "virtual" specifier in "virtual ~File() {}". If I remove it then BCC32 compiles the resulting program, else it bombs with "Error E2063 terr.c 153: Illegal initialization". For the whole compilation I use the following .bat file: =================================================== rm err.bc .\..\..\LLVM\bin\llvm-g++ -I../LLVM/include -Wno-deprecated -I../unr...
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 'vorbis-dev-request...
2005 Oct 26
1
Borland C++ and [R] dyn.load() for windows
...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 < *nb; j++) ab[i + j] += a[i] * b[j]; } I used "bcc32 -Ic:\Borland\bcc55\include -Lc:\Borland\bcc55\Lib -u- -6 -O2 -WDE c:\Borland\bcc55\convolve.c" to get "convolve.dll". It seemed fine. When I used dyn.load("C:\\Borland\\BCC55\\Bin\\convolve.dll") in R (Version 2.0.1 ), it seemed fine also, no warning or error messages. H...
2004 Feb 17
1
Vorbisfile Problem...
...w before some of you recomend I download the source and compile it, then use those libraries, how hard would that be? I mean I can grasp compiling to library or DLL, but how many changes would I need to make to the sources, if any? If it's a simple matter of downloading the source and running bcc32, then it'll be cake. However, I don't think that will fix my problem. The libraries work just fine right now, as far as errors or warnings are concerned. So, is it really necesarry to do all that JUST to test compiling? Other than that, the application is ready to go. It is a freewar...
2002 Aug 23
1
R_NilValue blows up on Windows
Ok, Here's the c code that's loaded into R as dll on windows: #include <R.h> #include <Rdefines.h> SEXP test1(SEXP col); SEXP test1(SEXP col) { SEXP col2; Rprintf("no value!\n"); return col2; } Compiles ok with bcc32 into a dll, loads into R as part of a library, I Run library(rkdb), then > .Call("test1", 2) no value! And puf! Rterm crashes. What's the point of this? I developed a library for connecting to a kdb database from within R. Similar to RODBC, but faster and more streamlined for a...
2006 Feb 09
0
(no subject)
...ample in `Writing R Extensions'. Then build the DLL by (gcc) ...\bin\R CMD SHLIB X.cc X_main.cc or (VC++, which requires extension .cpp) cl /MT /c X.cpp X_main.cpp link /dll /out:X.dll /export:X_main X.obj X_main.obj or (Borland C++, which also requires extension .cpp) bcc32 -u- -WDE X.cpp X_main.cpp and call the entry point(s) in X_R, such as X_main. Construction of static variables will occur when the DLL is loaded, and destruction when the DLL is unloaded, usually when R terminates. Note that you will not see the messages from this example in the GUI console: see...
2004 Jul 12
0
Where does R search when source() ?
...dmurdoch at pair.com> wrote: | > On Fri, 9 Jul 2004 03:29:55 -0700 (PDT), Utsav | > Boobna | > <catch_utsav at yahoo.com> wrote : | > | > >Hi | > >I am using Borland C++ compiler 5.5 and R 1.7.1 | > > | > >got the dll using | > > | > >c:\> bcc32 -u- -6 -O2 -osample.dll -WDE sample.c | > | > I don't know the bcc32 command line options. Can | > you examine the | > sample.dll file (using e.g. "tdump sample.dll", if | > you have tdump, or | > "objdump -x sample.dll" using the objdump tool from | >...