tomassedovic / tcod-rs

Rust bindings for libtcod 1.6.3 (the Doryen library/roguelike toolkit)
Do What The F*ck You Want To Public License
229 stars 45 forks source link

Fix build on linux #292

Closed lucanLepus closed 5 years ago

lucanLepus commented 5 years ago

The recent build failures seem to have been introduced in rust 1.35, because the compiler handles redundant linker flags differently. It is now important to have the last occurrence of -lSDL2 after the last occurrence of -ltcod

i am not sure if this is the right fix, but it seems to get everything going again and should resolve #288

tomassedovic commented 5 years ago

Thank you!