Fix Clang linker lib

This commit is contained in:
Francis ANDRE 2018-09-25 09:42:55 +02:00
parent b1efa8aa8e
commit 9a140fdae2

View File

@ -48,6 +48,9 @@ model {
}
if (toolChain in Gcc) {
linker.args ( "-L", "/usr/lib/x86_64-linux-gnu")
linker.args ( "-l", "odbc")
}
if (toolChain in Clang) {
linker.args ( "-l", "odbc")
}
}