Skip to content

Commit

Permalink
Update READMEs and Lua rockspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
novoselrok committed Aug 3, 2020
1 parent 16cbf70 commit bf51acf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README_GO.rst
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Right now it only accepts integers as identifiers for items. Note that it will a
Full Go API
---------------

See annoygomodule.h. Generally the same as Python API except some arguments are not optional.
See annoygomodule.h. Generally the same as Python API except some arguments are not optional. Go binding does not support multithreaded build.

Tests
-------
Expand Down
2 changes: 1 addition & 1 deletion README_Lua.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ end
Full Lua API
------------

Lua API closely resembles Python API, see main README.
Lua API closely resembles Python API, see main README. Lua binding does not support multithreaded build.


Tests
Expand Down
4 changes: 2 additions & 2 deletions annoy-dev-1.rockspec
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,14 @@ build = {
unix = {
modules = {
['annoy'] = {
libraries = {"stdc++", "pthread"},
libraries = {"stdc++"},
},
},
},
mingw32 = {
modules = {
['annoy'] = {
libraries = {"stdc++", "pthread"},
libraries = {"stdc++"},
},
},
},
Expand Down

0 comments on commit bf51acf

Please sign in to comment.