From c7981ca306e4dfa2d8a5524b3b2063be8a7a6584 Mon Sep 17 00:00:00 2001 From: midipix Date: Thu, 6 May 2021 04:26:10 +0000 Subject: link mode: always create libfoo.so.def.{host|flavor} and related tags. --- src/logic/slbt_exec_install.c | 2 +- src/logic/slbt_exec_link.c | 106 ++++++++++++++++++++++++++---------------- 2 files changed, 67 insertions(+), 41 deletions(-) (limited to 'src/logic') diff --git a/src/logic/slbt_exec_install.c b/src/logic/slbt_exec_install.c index 124c44d..3f04e66 100644 --- a/src/logic/slbt_exec_install.c +++ b/src/logic/slbt_exec_install.c @@ -479,7 +479,7 @@ static int slbt_exec_install_entry( slnkname) >= sizeof(dstfile)) return SLBT_BUFFER_ERROR(dctx); - fpe = fstatat(fdcwd,dstfile,&st,0) ? false : true; + fpe = !strcmp(dctx->cctx->asettings.imagefmt,"pe"); /* basename */ if ((base = strrchr(slnkname,'/'))) diff --git a/src/logic/slbt_exec_link.c b/src/logic/slbt_exec_link.c index f61c5db..c271e7e 100644 --- a/src/logic/slbt_exec_link.c +++ b/src/logic/slbt_exec_link.c @@ -1138,54 +1138,60 @@ static int slbt_exec_link_create_dep_file( return 0; } -static int slbt_exec_link_create_import_library( +static int slbt_exec_link_create_host_tag( const struct slbt_driver_ctx * dctx, struct slbt_exec_ctx * ectx, - char * impfilename, - char * deffilename, - char * soname, - bool ftag) + char * deffilename) { - int fmdso; - char * slash; - char * eargv[8]; - char program[PATH_MAX]; + char * slash; char hosttag[PATH_MAX]; char hostlnk[PATH_MAX]; /* libfoo.so.def.{flavor} */ - if (ftag) { - if ((size_t)snprintf(hosttag,sizeof(hosttag),"%s.%s", - deffilename, - dctx->cctx->host.flavor) >= sizeof(hosttag)) - return SLBT_BUFFER_ERROR(dctx); + if ((size_t)snprintf(hosttag,sizeof(hosttag),"%s.%s", + deffilename, + dctx->cctx->host.flavor) >= sizeof(hosttag)) + return SLBT_BUFFER_ERROR(dctx); - if ((size_t)snprintf(hostlnk,sizeof(hostlnk),"%s.host", - deffilename) >= sizeof(hostlnk)) - return SLBT_BUFFER_ERROR(dctx); + if ((size_t)snprintf(hostlnk,sizeof(hostlnk),"%s.host", + deffilename) >= sizeof(hostlnk)) + return SLBT_BUFFER_ERROR(dctx); - /* libfoo.so.def is under .libs/ */ - if (!(slash = strrchr(deffilename,'/'))) - return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_LINK_FLOW); + /* libfoo.so.def is under .libs/ */ + if (!(slash = strrchr(deffilename,'/'))) + return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_LINK_FLOW); - if (slbt_create_symlink( - dctx,ectx, - deffilename, - hosttag, - SLBT_SYMLINK_DEFAULT)) - return SLBT_NESTED_ERROR(dctx); + if (slbt_create_symlink( + dctx,ectx, + deffilename, + hosttag, + SLBT_SYMLINK_DEFAULT)) + return SLBT_NESTED_ERROR(dctx); - /* libfoo.so.def.{flavor} is under .libs/ */ - if (!(slash = strrchr(hosttag,'/'))) - return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_LINK_FLOW); + /* libfoo.so.def.{flavor} is under .libs/ */ + if (!(slash = strrchr(hosttag,'/'))) + return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_LINK_FLOW); - if (slbt_create_symlink( - dctx,ectx, - ++slash, - hostlnk, - SLBT_SYMLINK_DEFAULT)) - return SLBT_NESTED_ERROR(dctx); - } + if (slbt_create_symlink( + dctx,ectx, + ++slash, + hostlnk, + SLBT_SYMLINK_DEFAULT)) + return SLBT_NESTED_ERROR(dctx); + + return 0; +} + +static int slbt_exec_link_create_import_library( + const struct slbt_driver_ctx * dctx, + struct slbt_exec_ctx * ectx, + char * impfilename, + char * deffilename, + char * soname) +{ + int fmdso; + char * eargv[8]; + char program[PATH_MAX]; /* dlltool or mdso? */ if (dctx->cctx->drvflags & SLBT_DRIVER_IMPLIB_DSOMETA) @@ -1925,6 +1931,14 @@ int slbt_exec_link( fpic = false; } + /* libfoo.so.def.{flavor} */ + if (dctx->cctx->libname) { + if (slbt_exec_link_create_host_tag( + dctx,ectx, + ectx->deffilename)) + return SLBT_NESTED_ERROR(dctx); + } + /* pic libfoo.a */ if (dot && !strcmp(dot,".la")) if (slbt_exec_link_create_archive( @@ -1963,6 +1977,13 @@ int slbt_exec_link( SLBT_SYMLINK_DEFAULT)) return SLBT_NESTED_ERROR(dctx); } + + if (slbt_create_symlink( + dctx,ectx, + "/dev/null", + ectx->deffilename, + SLBT_SYMLINK_LITERAL|SLBT_SYMLINK_DEVNULL)) + return SLBT_NESTED_ERROR(dctx); } /* -all-static library */ @@ -2086,8 +2107,7 @@ int slbt_exec_link( dctx,ectx, ectx->pimpfilename, ectx->deffilename, - soname, - true)) + soname)) return SLBT_NESTED_ERROR(dctx); /* symlink: libfoo.lib.a --> libfoo.x.lib.a */ @@ -2103,8 +2123,14 @@ int slbt_exec_link( dctx,ectx, ectx->vimpfilename, ectx->deffilename, - soxyz, - false)) + soxyz)) + return SLBT_NESTED_ERROR(dctx); + } else { + if (slbt_create_symlink( + dctx,ectx, + "/dev/null", + ectx->deffilename, + SLBT_SYMLINK_LITERAL|SLBT_SYMLINK_DEVNULL)) return SLBT_NESTED_ERROR(dctx); } } -- cgit v1.2.3