Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
src/setup.py: Do not put SAGE_LOCAL/lib in front of the library direc…
Browse files Browse the repository at this point in the history
…tories
  • Loading branch information
Matthias Koeppe committed May 17, 2020
1 parent 53f0359 commit 16247ad
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,12 @@ def excepthook(*exc):

keep_going = False

# search for dependencies and add to gcc -I<path>
# Search for dependencies in the source tree and add to gcc -I<path>
include_dirs = sage_include_directories(use_sources=True)

# Look for libraries in $SAGE_LOCAL/lib
library_dirs = [os.path.join(SAGE_LOCAL, "lib")]
# Look for libraries only in what is configured already through distutils
# and environment variables
library_dirs = []

# Manually add -fno-strict-aliasing, which is needed to compile Cython
# and disappears from the default flags if the user has set CFLAGS.
Expand Down

0 comments on commit 16247ad

Please sign in to comment.