We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5a4f949 commit cd7a07aCopy full SHA for cd7a07a
python-bindings/overview_article/tasks.py
@@ -2,7 +2,6 @@
2
overview article. """
3
import cffi
4
import invoke
5
-import os
6
import pathlib
7
8
@@ -75,7 +74,8 @@ def build_cppmult(c):
75
74
""" Build the shared library for the sample C++ code """
76
print_banner("Building C++ Library")
77
invoke.run(
78
- "g++ -O3 -Wall -Werror -shared -std=c++11 -fPIC cppmult.cpp -o libcppmult.so "
+ "g++ -O3 -Wall -Werror -shared -std=c++11 -fPIC cppmult.cpp "
+ "-o libcppmult.so "
79
)
80
print("* Complete")
81
0 commit comments