diff options
author | manojgudi | 2013-07-23 08:42:40 +0530 |
---|---|---|
committer | manojgudi | 2013-07-23 08:42:40 +0530 |
commit | 79fbabc757298cc7c479027438029bf09528dd01 (patch) | |
tree | d3544bcd79b7691713d5d9aa36690b4abe4b3c14 /setup.py | |
parent | 43114165fb5e59c4267991f4922970c897fe2d88 (diff) | |
download | sciscipy-1.0.0-79fbabc757298cc7c479027438029bf09528dd01.tar.gz sciscipy-1.0.0-79fbabc757298cc7c479027438029bf09528dd01.tar.bz2 sciscipy-1.0.0-79fbabc757298cc7c479027438029bf09528dd01.zip |
fixed setup.py to build on scilab-5.3.3
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ elif os.name == 'posix': ] sci_lib_dir = [os.path.join("/","usr", "lib", "scilab")] sci_librairies = ['scilab'] - sci_extra_link_args = ['-Wl,--no-as-needed'] + sci_extra_link_args = ['-Wl,--no-as-needed -lpython2.7 -L/usr/lib/scilab -lsciapi_scilab -lscicall_scilab -lscioutput_stream -lscicore -lscilinear_algebra -lsciconsole -lscilocalization -lscipolynomials -lsciio -lscielementary_functions -lscisparse -lscihistory_manager -lscihistory_browser -lscigraphics -lscicompletion -lscifunctions -lsciboolean -lsciwindows_tools -lscitime -lscifftw -lsciintersci -lscidouble -lscicommons'] else: raise NotImplementedError, "Only 'nt' and 'posix' are supported" |