You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ok, I wandered far into unknown territory as i am not a c# (or c++) developer. However i managed to compile this (although with a bunch of warnings) on MacOS High sierra.
Can we maybe update in the master branch? I'd be happy to create a pull request if it would be actually considered and merged. It seems like the one before was not merged for some reason.
There is also some issues with the python wrapper. But i'll create a separate issue for that.
The text was updated successfully, but these errors were encountered:
Ok, I wandered far into unknown territory as i am not a c# (or c++) developer. However i managed to compile this (although with a bunch of warnings) on MacOS High sierra.
First i copied this script and placed in the root directory:
https://github.com/andre-martins/TurboParser/pull/30/files
However this is made for an older version of MacOS... so following this Stackoverflow answer
I first replace
libstdc++
withlibc++
in the fileinstall_deps-osx.sh
only.After running this script i searched and replaced this for all files in TurboParser:
Original:
#include <tr1/unordered_map>
New:
#include <unordered_map>
Original:
tr1::unordered_map
New
unordered_map
Can we maybe update in the master branch? I'd be happy to create a pull request if it would be actually considered and merged. It seems like the one before was not merged for some reason.
There is also some issues with the python wrapper. But i'll create a separate issue for that.
The text was updated successfully, but these errors were encountered: