callme 0.1.10 2014-07-23
CRAN release: 2024-07-27
- Vignettes
 - 
compile()changes- Read code from file if 
codeargument is a valid existing path to a file. - Add option 
invisibleto return wrapper result invisibly 
 - Read code from file if 
 
callme 0.1.9 2024-07-13
- Support 
CFLAGSargument to replace the default C compiler flags - 
PKG_LDFLAGSreplaced byPKG_LIBSand now used inMakevarsfile rather than on the command line. 
callme 0.1.7 2023-07-23
- Add 
callme_engine()to enable the use ofcallme()code in knitr/Rmarkdown/Quarto chunks. - Switch to 
README.qmdfromREADME.Rmd 
callme 0.1.6 2023-07-22
- Auto-injecting bare mimimum required headers if not present. i.e. 
R.handRinternals.h - Raise warning when there doesn’t appear to be any 
.Call()-compatible functions in the code 
callme 0.1.5 2023-07-21
- Be stricter about rejecting function signatures which aren’t compatible with 
.Call()when auto-generating wrappers. 
callme 0.1.4 2023-07-21
- Return a more useful object which contains wrapper functions for all the C functions which adhere to 
.Call()syntax - Added 
verboseflag to control whether output from the compiler is echoed to the terminal. Default:FALSE 
callme 0.1.1 2023-07-20
- Explicitly set a finalizer on the returned reference to the DLL such that the library will be unloaded when this returned variable gets garbage collected.
- User must now keep a reference to the returned object to ensure the C functions remain available.
 - Automatically unloading the library means that
- it will not pollute the namespace
 - Newer versions of the compiled function are not masked by prior compiled versions.
 
 
 - Switch to use 
Makevarsfile for settingCPPFLAGSas Windows doesn’t understantR CMD COMPILE 
