Skip to content

Commit a0ceec0

Browse files
committed
comment out extra compiler arguments
1 parent a79bf2d commit a0ceec0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# SparseDiffPy
22

3-
Python bindings for [SparseDiffEngine](https://github.com/SparseDifferentiation/SparseDiffEngine), a C library for automatic differentiation with sparse derivative computation.
3+
Python bindings for [SparseDiffEngine](https://github.com/SparseDifferentiation/SparseDiffEngine), a C library for computing sparse Jacobians and Hessians.
44

55
## Installation
66

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ def finalize_options(self) -> None:
5757
],
5858
define_macros=defines,
5959
extra_compile_args=[
60-
"-O3",
61-
"-std=c99",
62-
"-Wall",
63-
not_on_windows("-Wextra"),
64-
'-DDIFF_ENGINE_VERSION="0.1.0"',
60+
#"-O3",
61+
#"-std=c99",
62+
#"-Wall",
63+
#not_on_windows("-Wextra"),
64+
#'-DDIFF_ENGINE_VERSION="0.1.0"',
6565
],
6666
extra_link_args=["-lm"] if platform.system().lower() != "windows" else [],
6767
)

0 commit comments

Comments
 (0)