-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a README on need for RINSIDE_CALLBACKS for sandboxed server
- Loading branch information
1 parent
2cf4094
commit db0d572
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,8 @@ | ||
2023-09-17 Dirk Eddelbuettel <[email protected]> | ||
|
||
* inst/examples/sandboxed_server/README.md: Add README noting need to | ||
rebuild RInside with `RINSIDE_CALLBACKS` defined | ||
|
||
2023-03-16 Dirk Eddelbuettel <[email protected]> | ||
|
||
* DESCRIPTION (Version, Date): Roll minor version | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
## Sandboxed Server | ||
|
||
The example provided in this directory requires `RInside` to be built with | ||
callback support. This can be enabled by uncommenting one line in the file | ||
`RInsideConfig.h` to define the preprocessor constant `RINSIDE_CALLBACKS`, | ||
and then rebuilding. | ||
|
||
Alternatively, adding a compiler flag `-DRINSIDE_CALLBACKS` and reinstalling | ||
would do too; this also requires using the same flag when building the | ||
example or similar applications. |