1
0
mirror of https://github.com/cc65/cc65.git synced 2024-12-24 11:31:31 +00:00

ar65: fix parallel builds by using a per-process temp file

This commit is contained in:
Christian Groessler 2021-02-16 22:19:34 +01:00 committed by Oliver Schmidt
parent b02838439c
commit d3c495e8b9

View File

@ -249,9 +249,10 @@ void LibOpen (const char* Name, int MustExist, int NeedTemp)
if (NeedTemp) {
/* Create the temporary library name */
NewLibName = xmalloc (strlen (Name) + strlen (".temp") + 1);
NewLibName = xmalloc (strlen (Name) + strlen (".temp-") + 8 + 1);
strcpy (NewLibName, Name);
strcat (NewLibName, ".temp");
strcat (NewLibName, ".temp-");
sprintf (NewLibName + strlen (NewLibName), "%X", (unsigned int)getpid());
/* Create the temporary library */
NewLib = fopen (NewLibName, "w+b");