The R Project SVN R

Rev

Rev 53374 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 53374 Rev 73403
Line 129... Line 129...
129
they must be equivalent to the C type char** and null-terminated.  Not
129
they must be equivalent to the C type char** and null-terminated.  Not
130
even the MinGW g77 Fortran used null-terminated strings. (g77 was in
130
even the MinGW g77 Fortran used null-terminated strings. (g77 was in
131
GCC 3.x.y, superseded by gfortran.)
131
GCC 3.x.y, superseded by gfortran.)
132
 
132
 
133
WARNING: DLLs made with some compilers reset the FPU in their startup
133
WARNING: DLLs made with some compilers reset the FPU in their startup
134
code (Delphi has been one), and this will cause operations such as
134
code and this will cause operations such as
135
0./0. to crash R.  You can re-set the FPU to the correct values by a
135
0./0. to crash R.  You can re-set the FPU to the correct values by a
136
call to the C entry point Rwin_fpset().
136
call to the C entry point Rwin_fpset().
137
 
137
 
138
For some further details and Delphi examples see
-
 
139
http://www.stats.uwo.ca/faculty/murdoch/software/compilingDLLs/
-
 
140
 
-