1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-01 13:41:34 +00:00

Merge pull request #1735 from rofl0r/empty_prefix

build: allow empty prefix - should this break on Amiga or other non POSIX systems, please speak up
This commit is contained in:
Bob Andrews 2022-05-06 13:04:00 +02:00 committed by GitHub
commit 9beedbafdd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
10 changed files with 131 additions and 31 deletions

View File

@ -46,7 +46,6 @@ clean:
$(RM) -r ../html ../info
install:
$(if $(PREFIX),,$(error variable "PREFIX" must be set))
ifeq ($(wildcard ../html),../html)
$(INSTALL) -d $(DESTDIR)$(htmldir)
$(INSTALL) -m0644 ../html/*.* $(DESTDIR)$(htmldir)

View File

@ -96,7 +96,6 @@ INSTALL = install
define INSTALL_recipe
$(if $(PREFIX),,$(error variable "PREFIX" must be set))
$(INSTALL) -d $(DESTDIR)$(datadir)/$(dir)
$(INSTALL) -m0644 ../$(dir)/*.* $(DESTDIR)$(datadir)/$(dir)

View File

@ -525,7 +525,6 @@ INSTALL = install
samplesdir = $(PREFIX)/share/cc65/samples
install:
$(if $(PREFIX),,$(error variable "PREFIX" must be set))
$(INSTALL) -d $(DESTDIR)$(samplesdir)
$(INSTALL) -d $(DESTDIR)$(samplesdir)/geos
$(INSTALL) -d $(DESTDIR)$(samplesdir)/tutorial

View File

@ -26,7 +26,7 @@ PROGS = ar65 \
.SUFFIXES:
bindir := $(PREFIX)/bin
datadir := $(if $(PREFIX),$(PREFIX)/share/cc65,$(abspath ..))
datadir := $(PREFIX)/share/cc65
CA65_INC = $(datadir)/asminc
CC65_INC = $(datadir)/include
@ -111,7 +111,6 @@ $(RM) /usr/local/bin/$(prog)
endef # UNAVAIL_recipe
install:
$(if $(PREFIX),,$(error variable "PREFIX" must be set))
$(INSTALL) -d $(DESTDIR)$(bindir)
$(INSTALL) ../bin/* $(DESTDIR)$(bindir)

View File

@ -80,5 +80,5 @@ void FinishIncludePaths (void)
#endif
/* Add paths relative to the parent directory of the Windows binary. */
AddSubSearchPathFromWinBin (IncSearchPath, "asminc");
AddSubSearchPathFromBin (IncSearchPath, "asminc");
}

View File

@ -81,5 +81,5 @@ void FinishIncludePaths (void)
#endif
/* Add paths relative to the parent directory of the Windows binary. */
AddSubSearchPathFromWinBin (SysIncSearchPath, "include");
AddSubSearchPathFromBin (SysIncSearchPath, "include");
}

View File

@ -1218,7 +1218,7 @@ static void OptPrintTargetPath (const char* Opt attribute ((unused)),
#if defined(CL65_TGT) && !defined(_WIN32)
AddSearchPath (TargetPaths, CL65_TGT);
#endif
AddSubSearchPathFromWinBin (TargetPaths, "target");
AddSubSearchPathFromBin (TargetPaths, "target");
TargetPath = GetSearchPath (TargetPaths, 0);
while (*TargetPath) {

View File

@ -44,6 +44,12 @@
#else
/* Anyone else */
# include <unistd.h>
# include <stdio.h>
# include <limits.h>
# ifndef PATH_MAX
# define PATH_MAX 4096
# endif
# include "cmdline.h"
#endif
/* common */
@ -157,36 +163,142 @@ void AddSubSearchPathFromEnv (SearchPaths* P, const char* EnvVar, const char* Su
SB_Done (&Dir);
}
#ifdef _WIN32
#define PATHSEP "\\"
#undef PATH_MAX
#define PATH_MAX _MAX_PATH
#else
#define PATHSEP "/"
void AddSubSearchPathFromWinBin (SearchPaths* P, const char* SubDir)
{
/* Windows only:
** Add a search path from the running binary, adding a subdirectory to
** the parent directory of the directory containing the binary.
/*
on POSIX-compatible operating system, a binary can be started in
3 distinct ways:
1) using absolute path; in which case argv[0] starts with '/'
2) using relative path; in which case argv[0] contains '/', but
does not start with it. e.g.: ./ca65 ; bin/cc65
3) using PATH environment variable, which is a colon-separated
list of directories which will be searched for a command
name used unprefixed. see execlp() and execvp() in man 3p exec:
> The argument file is used to construct a pathname that identifies the new
> process image file. If the file argument contains a <slash> character,
> the file argument shall be used as the pathname for this file.
> Otherwise, the path prefix for this file is obtained by a search of the
> directories passed as the environment variable PATH (see the Base
> Definitions volume of POSIX.1*2008, Chapter 8, Environment Variables).
> If this environment variable is not present, the results of the search
> are implementation-defined.
*/
#if defined(_WIN32)
char Dir[_MAX_PATH];
static int SearchPathBin(const char* bin, char* buf, size_t buflen)
/* search colon-separated list of paths in PATH environment variable
** for the full path of argv[0].
** returns 1 if successfull, in which case buf will contain the full path.
** bin = binary name (from argv[0]), buf = work buffer, buflen = sizeof buf
*/
{
char* p = getenv ("PATH");
char* o;
size_t l;
if (!p) {
return 0;
}
for (;;) {
o = buf;
l = buflen;
while (l && *p && *p != ':') {
*(o++) = *(p++);
l--;
}
snprintf (o, l, "/%s", bin);
if (access (buf, X_OK) == 0) {
return 1;
}
if (*p == ':') {
p++;
} else if (!p) {
break;
}
}
return 0;
}
static char* GetProgPath(char* pathbuf, char* a0)
/* search for the full path of the binary using the argv[0] parameter
** passed to int main(), according to the description above.
**
** the binary name will be passed to realpath(3p) to have all symlinks
** resolved and gratuitous path components like "../" removed.
**
** argument "pathbuf" is a work buffer of size PATH_MAX,
** "a0" the original argv[0].
** returns pathbuf with the full path of the binary.
*/
{
char tmp[PATH_MAX];
if (!strchr(a0, '/')) {
/* path doesn't contain directory separator, so it was looked up
via PATH environment variable */
SearchPathBin (a0, tmp, PATH_MAX);
a0 = tmp;
}
/* realpath returns the work buffer passed to it, so checking the
return value is superfluous. gcc11 warns anyway. */
if (realpath (a0, pathbuf)) {}
return pathbuf;
}
#endif
void AddSubSearchPathFromBin (SearchPaths* P, const char* SubDir)
/* Add a search path from the running binary, adding a subdirectory to
** the parent directory of the directory containing the binary.
**
** currently this will work on POSIX systems and on Windows. Should
** we run into build errors on systems that are neither, we must add
** another exception below.
*/
{
char* Ptr;
char Dir[PATH_MAX];
#if defined(_WIN32)
if (GetModuleFileName (NULL, Dir, _MAX_PATH) == 0) {
return;
}
#else /* POSIX */
GetProgPath(Dir, ArgVec[0]);
#endif
/* Remove binary name */
Ptr = strrchr (Dir, '\\');
Ptr = strrchr (Dir, PATHSEP[0]);
if (Ptr == 0) {
return;
}
*Ptr = '\0';
/* Check for 'bin' directory */
Ptr = strrchr (Dir, '\\');
Ptr = strrchr (Dir, PATHSEP[0]);
if (Ptr == 0) {
return;
}
if (strcmp (Ptr++, "\\bin") != 0) {
if (strcmp (Ptr++, PATHSEP "bin") != 0) {
return;
}
@ -195,13 +307,6 @@ void AddSubSearchPathFromWinBin (SearchPaths* P, const char* SubDir)
/* Add the search path */
AddSearchPath (P, Dir);
#else
(void) P;
(void) SubDir;
#endif
}

View File

@ -75,9 +75,8 @@ void AddSubSearchPathFromEnv (SearchPaths* P, const char* EnvVar, const char* Su
** the environment variable value.
*/
void AddSubSearchPathFromWinBin (SearchPaths* P, const char* SubDir);
/* Windows only:
** Add a search path from the running binary, adding a subdirectory to
void AddSubSearchPathFromBin (SearchPaths* P, const char* SubDir);
/* Add a search path from the running binary, adding a subdirectory to
** the parent directory of the directory containing the binary.
*/

View File

@ -99,7 +99,7 @@ void InitSearchPaths (void)
#endif
/* Add paths relative to the parent directory of the Windows binary. */
AddSubSearchPathFromWinBin (LibDefaultPath, "lib");
AddSubSearchPathFromWinBin (ObjDefaultPath, "lib");
AddSubSearchPathFromWinBin (CfgDefaultPath, "cfg");
AddSubSearchPathFromBin (LibDefaultPath, "lib");
AddSubSearchPathFromBin (ObjDefaultPath, "lib");
AddSubSearchPathFromBin (CfgDefaultPath, "cfg");
}