Skip to content

Commit 462d4f4

Browse files
committed
Stop shipping dynamically linked versions of the libpino libraries
1 parent ca8cd74 commit 462d4f4

1 file changed

Lines changed: 0 additions & 21 deletions

File tree

tools/gcc-wrapper/main.c

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,6 @@ static const char LIBLSAN_SHARED[] = "liblsan.so";
6565
static const char LIBTSAN_SHARED[] = "libtsan.so";
6666
static const char LIBUBSAN_SHARED[] = "libubsan.so";
6767

68-
static const char LIBPINO_MMAN_SHARED[] = "libpino-mman.so";
69-
static const char LIBPINO_MATH_SHARED[] = "libpino-math.so";
70-
7168
static const char GCC_OPT_ISYSTEM[] = "-isystem";
7269
static const char GCC_OPT_SYSROOT[] = "--sysroot";
7370
static const char GCC_OPT_NOSTDINC[] = "--no-standard-includes";
@@ -2260,24 +2257,6 @@ int main(int argc, char* argv[], char* envp[]) {
22602257
goto end;
22612258
}
22622259
}
2263-
2264-
/* libpino-math */
2265-
if (wants_libm) {
2266-
err = copy_shared_library(sysroot_library_directory, output_directory, LIBPINO_MATH_SHARED, LIBPINO_MATH_SHARED);
2267-
2268-
if (err != ERR_SUCCESS) {
2269-
goto end;
2270-
}
2271-
}
2272-
2273-
/* libpino-mman */
2274-
if (wants_libpino_mman) {
2275-
err = copy_shared_library(sysroot_library_directory, output_directory, LIBPINO_MMAN_SHARED, LIBPINO_MMAN_SHARED);
2276-
2277-
if (err != ERR_SUCCESS) {
2278-
goto end;
2279-
}
2280-
}
22812260
}
22822261
#endif
22832262

0 commit comments

Comments
 (0)