Merge pull request #2826 from bredelings/fix-clang-on-linux
Fix linking with clang++ on linux if install_rpath.pull/2832/head
commit
d0d07a6fa9
4 changed files with 29 additions and 2 deletions
@ -0,0 +1,8 @@ |
||||
#include <string> |
||||
#include <iostream> |
||||
|
||||
int main(int argc, char **argv) { |
||||
std::string* s = new std::string("Hello"); |
||||
delete s; |
||||
return 0; |
||||
} |
Loading…
Reference in new issue