Skip to content

Commit 2fef2a4

Browse files
committed
update README
1 parent dadd8ac commit 2fef2a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/extensions/pybind11/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
pip install pybind11
33

4-
g++ -O3 -Wall -Wextra -shared -std=c++17 -fPIC $(python3 -m pybind11 --includes) mandel.cpp -o mandel$(python3-config --extension-suffix)
4+
g++ -O3 -DNDEBUG -Wall -Wextra -shared -std=c++17 -fPIC $(python3 -m pybind11 --includes) mandel.cpp -o mandel$(python3-config --extension-suffix)
55

66

77
see https://stackoverflow.com/questions/44659924/returning-numpy-arrays-via-pybind11

examples/extensions/pybind11/contiguous/README

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ This version uses a simple Array class to give us nice indexing into a contiguou
22

33
pip install pybind11
44

5-
g++ -DNDEBUG -O3 -Wall -Wextra -shared -std=c++17 -fPIC $(python3 -m pybind11 --includes) mandel.cpp -o mandel$(python3-config --extension-suffix)
5+
g++ -DNDEBUG -O3 -Wall -Wextra -shared -std=c++17 -fPIC $(python3 -m pybind11 --includes) mandel.cpp -o mandel$(python3-config --extension-suffix)
66

77

88
see https://stackoverflow.com/questions/44659924/returning-numpy-arrays-via-pybind11

0 commit comments

Comments
 (0)