Skip to content

Commit

Permalink
Change library link ordering for python binding
Browse files Browse the repository at this point in the history
This fixes issue mozilla#578
  • Loading branch information
Alexandre Lissy committed Jun 30, 2017
1 parent 9a5d114 commit 331a7f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native_client/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class BuildExtFirst(build):
model = Extension('_model',
['python/model.i'],
include_dirs = [numpy_include],
libraries = ['tensorflow_cc', 'deepspeech', 'deepspeech_utils'])
libraries = ['deepspeech', 'deepspeech_utils', 'tensorflow_cc'])

utils = Extension('_utils',
['python/utils.i'],
Expand Down

0 comments on commit 331a7f2

Please sign in to comment.