commit ec9ea6df369d8fb35d8f54edb08eb94563873c79
parent af865abede89dca1a10b393a6f761f2844cef6b0
Author: Joris Vink <joris@coders.se>
Date: Tue, 7 Apr 2015 13:10:28 +0200
Update README.md for cpp example.
Diffstat:
examples/cpp/README.md | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/examples/cpp/README.md b/examples/cpp/README.md
@@ -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
```