Update README.md for cpp example.

This commit is contained in:
Joris Vink 2015-04-07 13:10:28 +02:00
parent af865abede
commit ec9ea6df36
1 changed files with 1 additions and 7 deletions

View File

@ -8,12 +8,6 @@ extern “C” {
int validatorA(struct http_request *, char *);
}
```
You will also need to compile kore with the KORE_CPP_SUPPORT environment variable enabled:
```
# env KORE_CPP_SUPPORT=1 make
```
In order to run this example with the default C++ settings (default compiler dialect, libstdc++):
```
# kore run
@ -26,5 +20,5 @@ In order to run with a specific dialect and C++ runtime:
You can also supply your own compiler combined with the above:
```
# env CXX=clang++ CXXSTD=c++11 CXXLIB=c++ kore run
# env CC=clang++ CXXSTD=c++11 CXXLIB=c++ kore run
```