this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Hardcode arch triplets

+2 -4
+1 -2
Toolchain-x86.cmake
··· 7 7 SET(BITS 32) 8 8 9 9 if (EXISTS "/etc/debian_version") 10 - SET (CMAKE_INSTALL_LIBDIR "lib/${CMAKE_LIBRARY_ARCHITECTURE}") 10 + SET (CMAKE_INSTALL_LIBDIR "lib/i386-linux-gnu") 11 11 else (EXISTS "/etc/debian_version") 12 12 SET (CMAKE_INSTALL_LIBDIR "lib32") 13 13 endif (EXISTS "/etc/debian_version") 14 -
+1 -2
Toolchain-x86_64.cmake
··· 6 6 SET(BITS 64) 7 7 8 8 if (EXISTS "/etc/debian_version") 9 - SET (CMAKE_INSTALL_LIBDIR "lib/${CMAKE_LIBRARY_ARCHITECTURE}") 9 + SET (CMAKE_INSTALL_LIBDIR "lib/x86_64-linux-gnu") 10 10 else (EXISTS "/etc/debian_version") 11 11 SET (CMAKE_INSTALL_LIBDIR "lib64") 12 12 endif (EXISTS "/etc/debian_version") 13 -