Show More
@@ -125,7 +125,7 b' class CythonMagics(Magics):' | |||
|
125 | 125 | "multiple times)." |
|
126 | 126 | ) |
|
127 | 127 | @magic_arguments.argument( |
|
128 |
'-L', ' |
|
|
128 | '-L', dest='library_dirs', metavar='dir', action='append', default=[], | |
|
129 | 129 | help="Add a path to the list of libary directories (can be specified " |
|
130 | 130 | "multiple times)." |
|
131 | 131 | ) |
@@ -200,7 +200,7 b' class CythonMagics(Magics):' | |||
|
200 | 200 | name = module_name, |
|
201 | 201 | sources = [pyx_file], |
|
202 | 202 | include_dirs = c_include_dirs, |
|
203 |
library_dirs = args.lib |
|
|
203 | library_dirs = args.library_dirs, | |
|
204 | 204 | extra_compile_args = args.compile_args, |
|
205 | 205 | extra_link_args = args.link_args, |
|
206 | 206 | libraries = args.lib, |
General Comments 0
You need to be logged in to leave comments.
Login now