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
error while loading shared libraries: libregex_macros-[...].so
after adding a reference to this library. After asking about this on irc, burntsushi said
you need to use #[no_link] #[plugin] extern crate regex_macros;
He then added why:
the reason why you need all this special stuff is because regex! is a compiler plugin and not just a normal macro. in fact, it won't work in the stable channel of Rust 1.0!
Could you fix this or get back to me on how I can continue on without it? Thanks!
The text was updated successfully, but these errors were encountered:
BurntSushi
added a commit
to BurntSushi/handlebars-rust
that referenced
this issue
Jan 31, 2015
At runtime, I'm getting an error:
error while loading shared libraries: libregex_macros-[...].so
after adding a reference to this library. After asking about this on irc, burntsushi said
He then added why:
Could you fix this or get back to me on how I can continue on without it? Thanks!
The text was updated successfully, but these errors were encountered: