Browse Source

libcxx: fix build for x86/64

When building libcxx for x86/64, the library is installed in /usr/lib64.
As the install section tries to copy the library from /usr/lib, this
breaks build on x86/64. Override the lib dir suffix to fix this.

Fixes: 856ea2bad3b3 ("libcxx: Add package")
Signed-off-by: Stijn Tintel <[email protected]>
Acked-by: Rosen Penev <[email protected]>
Stijn Tintel 6 years ago
parent
commit
1322190fd3
1 changed files with 1 additions and 0 deletions
  1. 1 0
      package/libs/libcxx/Makefile

+ 1 - 0
package/libs/libcxx/Makefile

@@ -45,6 +45,7 @@ CMAKE_OPTIONS += \
 	-DLIBCXX_INCLUDE_BENCHMARKS=OFF \
 	-DLIBCXX_INCLUDE_DOCS=OFF \
 	-DLIBCXX_INCLUDE_TESTS=OFF \
+	-DLIBCXX_LIBDIR_SUFFIX="" \
 	-DLIBCXX_STANDALONE_BUILD=ON \
 	-DLIBCXX_HAS_MUSL_LIBC=$(if $(CONFIG_USE_MUSL),ON,OFF)