Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to build on Windows (VSCode) #176

Open
irufus opened this issue Oct 14, 2024 · 5 comments
Open

Unable to build on Windows (VSCode) #176

irufus opened this issue Oct 14, 2024 · 5 comments

Comments

@irufus
Copy link

irufus commented Oct 14, 2024

I seem to be running into trouble building bx.cpp, allocator.cpp, and bounds.cpp when I run make tools-mingw-release64 MAKE_JOBS=4

==== Building bx (release64) ====
allocator.cpp
bounds.cpp
bx.cpp
commandline.cpp
make[2]: *** [bx.make:441: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [bx.make:453: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.o] Error 1
make[2]: *** [bx.make:449: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.o] Error 1
make[2]: *** [bx.make:445: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.o] Error 1
make[1]: *** [Makefile:17: bx] Error 2
make[1]: Leaving directory '[...]/foss/crown/3rdparty/bimg/.build/projects/gmake-mingw-gcc'
make: *** [makefile:105: build/mingw64/bin/texturec.exe] Error 2
@dbartolini
Copy link
Collaborator

Can you try setting: $env:MINGW = "C:\\msys64\\mingw64" before running make?

dbartolini added a commit that referenced this issue Oct 14, 2024
@irufus
Copy link
Author

irufus commented Oct 18, 2024

Yes i get this in return:

GNU Make 4.4.1
Built for x86_64-pc-msys
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Updating makefiles....
Updating goal targets....
 File 'tools-mingw-release64' does not exist.
  File 'build/mingw64/bin/texturec.exe' does not exist.
 Must remake target 'build/mingw64/bin/texturec.exe'.
"/usr/bin/make" -j4 -R -C 3rdparty/bimg/.build/projects/gmake-mingw-gcc config=release64 texturec
GNU Make 4.4.1
Built for x86_64-pc-msys
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Updating makefiles....
Updating goal targets....
 File 'texturec' does not exist.
  File 'bimg_decode' does not exist.
   File 'bx' does not exist.
  Must remake target 'bx'.
make[1]: Entering directory '/c/Users/Ishmael/foss/crown/3rdparty/bimg/.build/projects/gmake-mingw-gcc'
  File 'bimg_encode' does not exist.
  File 'bimg' does not exist.
==== Building bx (release64) ====
GNU Make 4.4.1
Built for x86_64-pc-msys
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Updating makefiles....
Updating goal targets....
 File 'all' does not exist.
  File 'prebuild' does not exist.
 Must remake target 'prebuild'.
 Successfully remade target file 'prebuild'.
  File 'prelink' does not exist.
 Must remake target 'prelink'.
 Successfully remade target file 'prelink'.
  File '../../win64_mingw-gcc/bin/libbxRelease.a' does not exist.
   File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o' does not exist.
  Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o'.
   File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.o' does not exist.
  Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.o'.
   File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.o' does not exist.
  Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.o'.
   File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.o' does not exist.
  Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.o'.
allocator.cpp
   File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.o' does not exist.
  Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.o'.
bounds.cpp
bx.cpp
commandline.cpp
make[2]: *** [bx.make:441: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: *** [bx.make:445: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.o] Error 1
make[2]: *** [bx.make:449: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.o] Error 1
make[2]: *** [bx.make:453: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.o] Error 1
make[1]: *** [Makefile:17: bx] Error 2
make[1]: Leaving directory '/c/Users/Ishmael/foss/crown/3rdparty/bimg/.build/projects/gmake-mingw-gcc'
make: *** [makefile:105: build/mingw64/bin/texturec.exe] Error 2

@dbartolini
Copy link
Collaborator

That's odd, try running make with -d option and paste the output: make -d tools-mingw-release64 MAKE_JOBS=4.

@irufus
Copy link
Author

irufus commented Oct 19, 2024

I use MAKE_JOBS=1 for this just because the text it generates is too long:

GNU Make 4.4.1
Built for x86_64-pc-msys
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'makefile'...
Updating makefiles....
 Considering target file 'makefile'.
  Looking for an implicit rule for 'makefile'.
   Trying pattern rule '%: %.o' with stem 'makefile'.
Directory . cache invalidated (count 1 != command 2)
   Trying implicit prerequisite 'makefile.o'.
   Not found 'makefile.o'.
   Trying pattern rule '%: %.c' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.c'.
   Not found 'makefile.c'.
   Trying pattern rule '%: %.cc' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.cc'.
   Not found 'makefile.cc'.
   Trying pattern rule '%: %.C' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.C'.
   Not found 'makefile.C'.
   Trying pattern rule '%: %.cpp' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.cpp'.
   Not found 'makefile.cpp'.
   Trying pattern rule '%: %.p' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.p'.
   Not found 'makefile.p'.
   Trying pattern rule '%: %.f' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.f'.
   Not found 'makefile.f'.
   Trying pattern rule '%: %.F' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.F'.
   Not found 'makefile.F'.
   Trying pattern rule '%: %.m' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.m'.
   Not found 'makefile.m'.
   Trying pattern rule '%: %.r' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.r'.
   Not found 'makefile.r'.
   Trying pattern rule '%: %.s' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.s'.
   Not found 'makefile.s'.
   Trying pattern rule '%: %.S' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.S'.
   Not found 'makefile.S'.
   Trying pattern rule '%: %.mod' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.mod'.
   Not found 'makefile.mod'.
   Trying pattern rule '%: %.sh' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.sh'.
   Not found 'makefile.sh'.
   Trying pattern rule '%:: %,v' with stem 'makefile'.
   Trying implicit prerequisite 'makefile,v'.
   Not found 'makefile,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'makefile'.
   Trying implicit prerequisite 'RCS/makefile,v'.
   Not found 'RCS/makefile,v'.
   Trying pattern rule '%:: RCS/%' with stem 'makefile'.
   Trying implicit prerequisite 'RCS/makefile'.
   Not found 'RCS/makefile'.
   Trying pattern rule '%:: s.%' with stem 'makefile'.
   Trying implicit prerequisite 's.makefile'.
   Not found 's.makefile'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'makefile'.
   Trying implicit prerequisite 'SCCS/s.makefile'.
   Not found 'SCCS/s.makefile'.
   Trying harder.
   Trying pattern rule '%: %.o' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.o'.
   Looking for a rule with intermediate file 'makefile.o'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Trying pattern rule '%.o: %.c' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.c'.
    Not found 'makefile.c'.
    Trying pattern rule '%.o: %.cc' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.cc'.
    Not found 'makefile.cc'.
    Trying pattern rule '%.o: %.C' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.C'.
    Not found 'makefile.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.cpp'.
    Not found 'makefile.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.p'.
    Not found 'makefile.p'.
    Trying pattern rule '%.o: %.f' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.f'.
    Not found 'makefile.f'.
    Trying pattern rule '%.o: %.F' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.F'.
    Not found 'makefile.F'.
    Trying pattern rule '%.o: %.m' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.m'.
    Not found 'makefile.m'.
    Trying pattern rule '%.o: %.r' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.r'.
    Not found 'makefile.r'.
    Trying pattern rule '%.o: %.s' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.s'.
    Not found 'makefile.s'.
    Trying pattern rule '%.o: %.S' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.S'.
    Not found 'makefile.S'.
    Trying pattern rule '%.o: %.mod' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.mod'.
    Not found 'makefile.mod'.
    Trying pattern rule '%:: %,v' with stem 'makefile.o'.
    Trying implicit prerequisite 'makefile.o,v'.
    Not found 'makefile.o,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'makefile.o'.
    Trying implicit prerequisite 'RCS/makefile.o,v'.
    Not found 'RCS/makefile.o,v'.
    Trying pattern rule '%:: RCS/%' with stem 'makefile.o'.
    Trying implicit prerequisite 'RCS/makefile.o'.
    Not found 'RCS/makefile.o'.
    Trying pattern rule '%:: s.%' with stem 'makefile.o'.
    Trying implicit prerequisite 's.makefile.o'.
    Not found 's.makefile.o'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.o'.
    Trying implicit prerequisite 'SCCS/s.makefile.o'.
    Not found 'SCCS/s.makefile.o'.
    Trying harder.
    Trying pattern rule '%.o: %.c' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.c'.
    Looking for a rule with intermediate file 'makefile.c'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.c'.
     Trying pattern rule '%.c: %.y' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.y'.
     Not found 'makefile.y'.
     Trying pattern rule '%.c: %.l' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.l'.
     Not found 'makefile.l'.
     Trying pattern rule '%.c: %.w' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.w'.
     Not found 'makefile.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.w'.
     Not found 'makefile.w'.
     Trying pattern rule '%:: %,v' with stem 'makefile.c'.
     Trying implicit prerequisite 'makefile.c,v'.
     Not found 'makefile.c,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.c'.
     Trying implicit prerequisite 'RCS/makefile.c,v'.
     Not found 'RCS/makefile.c,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.c'.
     Trying implicit prerequisite 'RCS/makefile.c'.
     Not found 'RCS/makefile.c'.
     Trying pattern rule '%:: s.%' with stem 'makefile.c'.
     Trying implicit prerequisite 's.makefile.c'.
     Not found 's.makefile.c'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.c'.
     Trying implicit prerequisite 'SCCS/s.makefile.c'.
     Not found 'SCCS/s.makefile.c'.
     Trying harder.
     Trying pattern rule '%.c: %.y' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.y'.
     Looking for a rule with intermediate file 'makefile.y'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.y'.
      Trying pattern rule '%:: %,v' with stem 'makefile.y'.
      Trying implicit prerequisite 'makefile.y,v'.
      Not found 'makefile.y,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.y'.
      Trying implicit prerequisite 'RCS/makefile.y,v'.
      Not found 'RCS/makefile.y,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.y'.
      Trying implicit prerequisite 'RCS/makefile.y'.
      Not found 'RCS/makefile.y'.
      Trying pattern rule '%:: s.%' with stem 'makefile.y'.
      Trying implicit prerequisite 's.makefile.y'.
      Not found 's.makefile.y'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.y'.
      Trying implicit prerequisite 'SCCS/s.makefile.y'.
      Not found 'SCCS/s.makefile.y'.
      Trying harder.
     No implicit rule found for 'makefile.y'.
     Rejecting rule '%.c: %.y' due to impossible prerequisite 'makefile.y'.
     Trying pattern rule '%.c: %.l' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.l'.
     Looking for a rule with intermediate file 'makefile.l'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.l'.
      Trying pattern rule '%:: %,v' with stem 'makefile.l'.
      Trying implicit prerequisite 'makefile.l,v'.
      Not found 'makefile.l,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.l'.
      Trying implicit prerequisite 'RCS/makefile.l,v'.
      Not found 'RCS/makefile.l,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.l'.
      Trying implicit prerequisite 'RCS/makefile.l'.
      Not found 'RCS/makefile.l'.
      Trying pattern rule '%:: s.%' with stem 'makefile.l'.
      Trying implicit prerequisite 's.makefile.l'.
      Not found 's.makefile.l'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.l'.
      Trying implicit prerequisite 'SCCS/s.makefile.l'.
      Not found 'SCCS/s.makefile.l'.
      Trying harder.
     No implicit rule found for 'makefile.l'.
     Rejecting rule '%.c: %.l' due to impossible prerequisite 'makefile.l'.
     Trying pattern rule '%.c: %.w' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.w'.
     Looking for a rule with intermediate file 'makefile.w'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.c'.
      Avoiding implicit rule recursion for rule '%.c: %.w'.
      Trying pattern rule '%:: %,v' with stem 'makefile.w'.
      Trying implicit prerequisite 'makefile.w,v'.
      Not found 'makefile.w,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.w'.
      Trying implicit prerequisite 'RCS/makefile.w,v'.
      Not found 'RCS/makefile.w,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.w'.
      Trying implicit prerequisite 'RCS/makefile.w'.
      Not found 'RCS/makefile.w'.
      Trying pattern rule '%:: s.%' with stem 'makefile.w'.
      Trying implicit prerequisite 's.makefile.w'.
      Not found 's.makefile.w'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.w'.
      Trying implicit prerequisite 'SCCS/s.makefile.w'.
      Not found 'SCCS/s.makefile.w'.
      Trying harder.
     No implicit rule found for 'makefile.w'.
     Rejecting rule '%.c: %.w' due to impossible prerequisite 'makefile.w'.
     Trying pattern rule '%.c: %.w %.ch' with stem 'makefile'.
     Rejecting rule '%.c: %.w %.ch' due to impossible implicit prerequisite 'makefile.w'.
    No implicit rule found for 'makefile.c'.
    Rejecting rule '%.o: %.c' due to impossible prerequisite 'makefile.c'.
    Trying pattern rule '%.o: %.cc' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.cc'.
    Looking for a rule with intermediate file 'makefile.cc'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cc'.
     Trying pattern rule '%:: %,v' with stem 'makefile.cc'.
     Trying implicit prerequisite 'makefile.cc,v'.
     Not found 'makefile.cc,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.cc'.
     Trying implicit prerequisite 'RCS/makefile.cc,v'.
     Not found 'RCS/makefile.cc,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.cc'.
     Trying implicit prerequisite 'RCS/makefile.cc'.
     Not found 'RCS/makefile.cc'.
     Trying pattern rule '%:: s.%' with stem 'makefile.cc'.
     Trying implicit prerequisite 's.makefile.cc'.
     Not found 's.makefile.cc'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.cc'.
     Trying implicit prerequisite 'SCCS/s.makefile.cc'.
     Not found 'SCCS/s.makefile.cc'.
     Trying harder.
    No implicit rule found for 'makefile.cc'.
    Rejecting rule '%.o: %.cc' due to impossible prerequisite 'makefile.cc'.
    Trying pattern rule '%.o: %.C' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.C'.
    Looking for a rule with intermediate file 'makefile.C'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.C'.
     Trying pattern rule '%:: %,v' with stem 'makefile.C'.
     Trying implicit prerequisite 'makefile.C,v'.
     Not found 'makefile.C,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.C'.
     Trying implicit prerequisite 'RCS/makefile.C,v'.
     Not found 'RCS/makefile.C,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.C'.
     Trying implicit prerequisite 'RCS/makefile.C'.
     Not found 'RCS/makefile.C'.
     Trying pattern rule '%:: s.%' with stem 'makefile.C'.
     Trying implicit prerequisite 's.makefile.C'.
     Not found 's.makefile.C'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.C'.
     Trying implicit prerequisite 'SCCS/s.makefile.C'.
     Not found 'SCCS/s.makefile.C'.
     Trying harder.
    No implicit rule found for 'makefile.C'.
    Rejecting rule '%.o: %.C' due to impossible prerequisite 'makefile.C'.
    Trying pattern rule '%.o: %.cpp' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.cpp'.
    Looking for a rule with intermediate file 'makefile.cpp'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.cpp'.
     Trying pattern rule '%:: %,v' with stem 'makefile.cpp'.
     Trying implicit prerequisite 'makefile.cpp,v'.
     Not found 'makefile.cpp,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.cpp'.
     Trying implicit prerequisite 'RCS/makefile.cpp,v'.
     Not found 'RCS/makefile.cpp,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.cpp'.
     Trying implicit prerequisite 'RCS/makefile.cpp'.
     Not found 'RCS/makefile.cpp'.
     Trying pattern rule '%:: s.%' with stem 'makefile.cpp'.
     Trying implicit prerequisite 's.makefile.cpp'.
     Not found 's.makefile.cpp'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.cpp'.
     Trying implicit prerequisite 'SCCS/s.makefile.cpp'.
     Not found 'SCCS/s.makefile.cpp'.
     Trying harder.
    No implicit rule found for 'makefile.cpp'.
    Rejecting rule '%.o: %.cpp' due to impossible prerequisite 'makefile.cpp'.
    Trying pattern rule '%.o: %.p' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.p'.
    Looking for a rule with intermediate file 'makefile.p'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.p'.
     Trying pattern rule '%.p: %.web' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.web'.
     Not found 'makefile.web'.
     Trying pattern rule '%:: %,v' with stem 'makefile.p'.
     Trying implicit prerequisite 'makefile.p,v'.
     Not found 'makefile.p,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.p'.
     Trying implicit prerequisite 'RCS/makefile.p,v'.
     Not found 'RCS/makefile.p,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.p'.
     Trying implicit prerequisite 'RCS/makefile.p'.
     Not found 'RCS/makefile.p'.
     Trying pattern rule '%:: s.%' with stem 'makefile.p'.
     Trying implicit prerequisite 's.makefile.p'.
     Not found 's.makefile.p'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.p'.
     Trying implicit prerequisite 'SCCS/s.makefile.p'.
     Not found 'SCCS/s.makefile.p'.
     Trying harder.
     Trying pattern rule '%.p: %.web' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.web'.
     Looking for a rule with intermediate file 'makefile.web'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.p'.
      Avoiding implicit rule recursion for rule '%.p: %.web'.
      Trying pattern rule '%:: %,v' with stem 'makefile.web'.
      Trying implicit prerequisite 'makefile.web,v'.
      Not found 'makefile.web,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.web'.
      Trying implicit prerequisite 'RCS/makefile.web,v'.
      Not found 'RCS/makefile.web,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.web'.
      Trying implicit prerequisite 'RCS/makefile.web'.
      Not found 'RCS/makefile.web'.
      Trying pattern rule '%:: s.%' with stem 'makefile.web'.
      Trying implicit prerequisite 's.makefile.web'.
      Not found 's.makefile.web'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.web'.
      Trying implicit prerequisite 'SCCS/s.makefile.web'.
      Not found 'SCCS/s.makefile.web'.
      Trying harder.
     No implicit rule found for 'makefile.web'.
     Rejecting rule '%.p: %.web' due to impossible prerequisite 'makefile.web'.
    No implicit rule found for 'makefile.p'.
    Rejecting rule '%.o: %.p' due to impossible prerequisite 'makefile.p'.
    Trying pattern rule '%.o: %.f' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.f'.
    Looking for a rule with intermediate file 'makefile.f'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.f'.
     Trying pattern rule '%.f: %.F' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.F'.
     Not found 'makefile.F'.
     Trying pattern rule '%.f: %.r' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.r'.
     Not found 'makefile.r'.
     Trying pattern rule '%:: %,v' with stem 'makefile.f'.
     Trying implicit prerequisite 'makefile.f,v'.
     Not found 'makefile.f,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.f'.
     Trying implicit prerequisite 'RCS/makefile.f,v'.
     Not found 'RCS/makefile.f,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.f'.
     Trying implicit prerequisite 'RCS/makefile.f'.
     Not found 'RCS/makefile.f'.
     Trying pattern rule '%:: s.%' with stem 'makefile.f'.
     Trying implicit prerequisite 's.makefile.f'.
     Not found 's.makefile.f'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.f'.
     Trying implicit prerequisite 'SCCS/s.makefile.f'.
     Not found 'SCCS/s.makefile.f'.
     Trying harder.
     Trying pattern rule '%.f: %.F' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.F'.
     Looking for a rule with intermediate file 'makefile.F'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.F'.
      Trying pattern rule '%:: %,v' with stem 'makefile.F'.
      Trying implicit prerequisite 'makefile.F,v'.
      Not found 'makefile.F,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.F'.
      Trying implicit prerequisite 'RCS/makefile.F,v'.
      Not found 'RCS/makefile.F,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.F'.
      Trying implicit prerequisite 'RCS/makefile.F'.
      Not found 'RCS/makefile.F'.
      Trying pattern rule '%:: s.%' with stem 'makefile.F'.
      Trying implicit prerequisite 's.makefile.F'.
      Not found 's.makefile.F'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.F'.
      Trying implicit prerequisite 'SCCS/s.makefile.F'.
      Not found 'SCCS/s.makefile.F'.
      Trying harder.
     No implicit rule found for 'makefile.F'.
     Rejecting rule '%.f: %.F' due to impossible prerequisite 'makefile.F'.
     Trying pattern rule '%.f: %.r' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.r'.
     Looking for a rule with intermediate file 'makefile.r'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.f'.
      Avoiding implicit rule recursion for rule '%.f: %.r'.
      Trying pattern rule '%.r: %.l' with stem 'makefile'.
      Rejecting rule '%.r: %.l' due to impossible implicit prerequisite 'makefile.l'.
      Trying pattern rule '%:: %,v' with stem 'makefile.r'.
      Trying implicit prerequisite 'makefile.r,v'.
      Not found 'makefile.r,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.r'.
      Trying implicit prerequisite 'RCS/makefile.r,v'.
      Not found 'RCS/makefile.r,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.r'.
      Trying implicit prerequisite 'RCS/makefile.r'.
      Not found 'RCS/makefile.r'.
      Trying pattern rule '%:: s.%' with stem 'makefile.r'.
      Trying implicit prerequisite 's.makefile.r'.
      Not found 's.makefile.r'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.r'.
      Trying implicit prerequisite 'SCCS/s.makefile.r'.
      Not found 'SCCS/s.makefile.r'.
      Trying harder.
     No implicit rule found for 'makefile.r'.
     Rejecting rule '%.f: %.r' due to impossible prerequisite 'makefile.r'.
    No implicit rule found for 'makefile.f'.
    Rejecting rule '%.o: %.f' due to impossible prerequisite 'makefile.f'.
    Trying pattern rule '%.o: %.F' with stem 'makefile'.
    Rejecting rule '%.o: %.F' due to impossible implicit prerequisite 'makefile.F'.
    Trying pattern rule '%.o: %.m' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.m'.
    Looking for a rule with intermediate file 'makefile.m'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.m'.
     Trying pattern rule '%.m: %.ym' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.ym'.
     Not found 'makefile.ym'.
     Trying pattern rule '%:: %,v' with stem 'makefile.m'.
     Trying implicit prerequisite 'makefile.m,v'.
     Not found 'makefile.m,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.m'.
     Trying implicit prerequisite 'RCS/makefile.m,v'.
     Not found 'RCS/makefile.m,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.m'.
     Trying implicit prerequisite 'RCS/makefile.m'.
     Not found 'RCS/makefile.m'.
     Trying pattern rule '%:: s.%' with stem 'makefile.m'.
     Trying implicit prerequisite 's.makefile.m'.
     Not found 's.makefile.m'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.m'.
     Trying implicit prerequisite 'SCCS/s.makefile.m'.
     Not found 'SCCS/s.makefile.m'.
     Trying harder.
     Trying pattern rule '%.m: %.ym' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.ym'.
     Looking for a rule with intermediate file 'makefile.ym'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.m'.
      Avoiding implicit rule recursion for rule '%.m: %.ym'.
      Trying pattern rule '%:: %,v' with stem 'makefile.ym'.
      Trying implicit prerequisite 'makefile.ym,v'.
      Not found 'makefile.ym,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.ym'.
      Trying implicit prerequisite 'RCS/makefile.ym,v'.
      Not found 'RCS/makefile.ym,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.ym'.
      Trying implicit prerequisite 'RCS/makefile.ym'.
      Not found 'RCS/makefile.ym'.
      Trying pattern rule '%:: s.%' with stem 'makefile.ym'.
      Trying implicit prerequisite 's.makefile.ym'.
      Not found 's.makefile.ym'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.ym'.
      Trying implicit prerequisite 'SCCS/s.makefile.ym'.
      Not found 'SCCS/s.makefile.ym'.
      Trying harder.
     No implicit rule found for 'makefile.ym'.
     Rejecting rule '%.m: %.ym' due to impossible prerequisite 'makefile.ym'.
    No implicit rule found for 'makefile.m'.
    Rejecting rule '%.o: %.m' due to impossible prerequisite 'makefile.m'.
    Trying pattern rule '%.o: %.r' with stem 'makefile'.
    Rejecting rule '%.o: %.r' due to impossible implicit prerequisite 'makefile.r'.
    Trying pattern rule '%.o: %.s' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.s'.
    Looking for a rule with intermediate file 'makefile.s'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.s'.
     Trying pattern rule '%.s: %.S' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.S'.
     Not found 'makefile.S'.
     Trying pattern rule '%:: %,v' with stem 'makefile.s'.
     Trying implicit prerequisite 'makefile.s,v'.
     Not found 'makefile.s,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.s'.
     Trying implicit prerequisite 'RCS/makefile.s,v'.
     Not found 'RCS/makefile.s,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.s'.
     Trying implicit prerequisite 'RCS/makefile.s'.
     Not found 'RCS/makefile.s'.
     Trying pattern rule '%:: s.%' with stem 'makefile.s'.
     Trying implicit prerequisite 's.makefile.s'.
     Not found 's.makefile.s'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.s'.
     Trying implicit prerequisite 'SCCS/s.makefile.s'.
     Not found 'SCCS/s.makefile.s'.
     Trying harder.
     Trying pattern rule '%.s: %.S' with stem 'makefile'.
     Trying implicit prerequisite 'makefile.S'.
     Looking for a rule with intermediate file 'makefile.S'.
      Avoiding implicit rule recursion for rule '%: %.o'.
      Avoiding implicit rule recursion for rule '%.o: %.s'.
      Avoiding implicit rule recursion for rule '%.s: %.S'.
      Trying pattern rule '%:: %,v' with stem 'makefile.S'.
      Trying implicit prerequisite 'makefile.S,v'.
      Not found 'makefile.S,v'.
      Trying pattern rule '%:: RCS/%,v' with stem 'makefile.S'.
      Trying implicit prerequisite 'RCS/makefile.S,v'.
      Not found 'RCS/makefile.S,v'.
      Trying pattern rule '%:: RCS/%' with stem 'makefile.S'.
      Trying implicit prerequisite 'RCS/makefile.S'.
      Not found 'RCS/makefile.S'.
      Trying pattern rule '%:: s.%' with stem 'makefile.S'.
      Trying implicit prerequisite 's.makefile.S'.
      Not found 's.makefile.S'.
      Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.S'.
      Trying implicit prerequisite 'SCCS/s.makefile.S'.
      Not found 'SCCS/s.makefile.S'.
      Trying harder.
     No implicit rule found for 'makefile.S'.
     Rejecting rule '%.s: %.S' due to impossible prerequisite 'makefile.S'.
    No implicit rule found for 'makefile.s'.
    Rejecting rule '%.o: %.s' due to impossible prerequisite 'makefile.s'.
    Trying pattern rule '%.o: %.S' with stem 'makefile'.
    Rejecting rule '%.o: %.S' due to impossible implicit prerequisite 'makefile.S'.
    Trying pattern rule '%.o: %.mod' with stem 'makefile'.
    Trying implicit prerequisite 'makefile.mod'.
    Looking for a rule with intermediate file 'makefile.mod'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.mod'.
     Trying pattern rule '%:: %,v' with stem 'makefile.mod'.
     Trying implicit prerequisite 'makefile.mod,v'.
     Not found 'makefile.mod,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'makefile.mod'.
     Trying implicit prerequisite 'RCS/makefile.mod,v'.
     Not found 'RCS/makefile.mod,v'.
     Trying pattern rule '%:: RCS/%' with stem 'makefile.mod'.
     Trying implicit prerequisite 'RCS/makefile.mod'.
     Not found 'RCS/makefile.mod'.
     Trying pattern rule '%:: s.%' with stem 'makefile.mod'.
     Trying implicit prerequisite 's.makefile.mod'.
     Not found 's.makefile.mod'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.mod'.
     Trying implicit prerequisite 'SCCS/s.makefile.mod'.
     Not found 'SCCS/s.makefile.mod'.
     Trying harder.
    No implicit rule found for 'makefile.mod'.
    Rejecting rule '%.o: %.mod' due to impossible prerequisite 'makefile.mod'.
   No implicit rule found for 'makefile.o'.
   Rejecting rule '%: %.o' due to impossible prerequisite 'makefile.o'.
   Trying pattern rule '%: %.c' with stem 'makefile'.
   Rejecting rule '%: %.c' due to impossible implicit prerequisite 'makefile.c'.
   Trying pattern rule '%: %.cc' with stem 'makefile'.
   Rejecting rule '%: %.cc' due to impossible implicit prerequisite 'makefile.cc'.
   Trying pattern rule '%: %.C' with stem 'makefile'.
   Rejecting rule '%: %.C' due to impossible implicit prerequisite 'makefile.C'.
   Trying pattern rule '%: %.cpp' with stem 'makefile'.
   Rejecting rule '%: %.cpp' due to impossible implicit prerequisite 'makefile.cpp'.
   Trying pattern rule '%: %.p' with stem 'makefile'.
   Rejecting rule '%: %.p' due to impossible implicit prerequisite 'makefile.p'.
   Trying pattern rule '%: %.f' with stem 'makefile'.
   Rejecting rule '%: %.f' due to impossible implicit prerequisite 'makefile.f'.
   Trying pattern rule '%: %.F' with stem 'makefile'.
   Rejecting rule '%: %.F' due to impossible implicit prerequisite 'makefile.F'.
   Trying pattern rule '%: %.m' with stem 'makefile'.
   Rejecting rule '%: %.m' due to impossible implicit prerequisite 'makefile.m'.
   Trying pattern rule '%: %.r' with stem 'makefile'.
   Rejecting rule '%: %.r' due to impossible implicit prerequisite 'makefile.r'.
   Trying pattern rule '%: %.s' with stem 'makefile'.
   Rejecting rule '%: %.s' due to impossible implicit prerequisite 'makefile.s'.
   Trying pattern rule '%: %.S' with stem 'makefile'.
   Rejecting rule '%: %.S' due to impossible implicit prerequisite 'makefile.S'.
   Trying pattern rule '%: %.mod' with stem 'makefile'.
   Rejecting rule '%: %.mod' due to impossible implicit prerequisite 'makefile.mod'.
   Trying pattern rule '%: %.sh' with stem 'makefile'.
   Trying implicit prerequisite 'makefile.sh'.
   Looking for a rule with intermediate file 'makefile.sh'.
    Avoiding implicit rule recursion for rule '%: %.sh'.
    Trying pattern rule '%:: %,v' with stem 'makefile.sh'.
    Trying implicit prerequisite 'makefile.sh,v'.
    Not found 'makefile.sh,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'makefile.sh'.
    Trying implicit prerequisite 'RCS/makefile.sh,v'.
    Not found 'RCS/makefile.sh,v'.
    Trying pattern rule '%:: RCS/%' with stem 'makefile.sh'.
    Trying implicit prerequisite 'RCS/makefile.sh'.
    Not found 'RCS/makefile.sh'.
    Trying pattern rule '%:: s.%' with stem 'makefile.sh'.
    Trying implicit prerequisite 's.makefile.sh'.
    Not found 's.makefile.sh'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'makefile.sh'.
    Trying implicit prerequisite 'SCCS/s.makefile.sh'.
    Not found 'SCCS/s.makefile.sh'.
    Trying harder.
   No implicit rule found for 'makefile.sh'.
   Rejecting rule '%: %.sh' due to impossible prerequisite 'makefile.sh'.
  No implicit rule found for 'makefile'.
 Finished prerequisites of target file 'makefile'.
 No need to remake target 'makefile'.
Updating goal targets....
Considering target file 'tools-mingw-release64'.
 File 'tools-mingw-release64' does not exist.
 Looking for an implicit rule for 'tools-mingw-release64'.
  Trying pattern rule '%: %.o' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.o'.
  Not found 'tools-mingw-release64.o'.
  Trying pattern rule '%: %.c' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.c'.
  Not found 'tools-mingw-release64.c'.
  Trying pattern rule '%: %.cc' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.cc'.
  Not found 'tools-mingw-release64.cc'.
  Trying pattern rule '%: %.C' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.C'.
  Not found 'tools-mingw-release64.C'.
  Trying pattern rule '%: %.cpp' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.cpp'.
  Not found 'tools-mingw-release64.cpp'.
  Trying pattern rule '%: %.p' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.p'.
  Not found 'tools-mingw-release64.p'.
  Trying pattern rule '%: %.f' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.f'.
  Not found 'tools-mingw-release64.f'.
  Trying pattern rule '%: %.F' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.F'.
  Not found 'tools-mingw-release64.F'.
  Trying pattern rule '%: %.m' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.m'.
  Not found 'tools-mingw-release64.m'.
  Trying pattern rule '%: %.r' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.r'.
  Not found 'tools-mingw-release64.r'.
  Trying pattern rule '%: %.s' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.s'.
  Not found 'tools-mingw-release64.s'.
  Trying pattern rule '%: %.S' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.S'.
  Not found 'tools-mingw-release64.S'.
  Trying pattern rule '%: %.mod' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.mod'.
  Not found 'tools-mingw-release64.mod'.
  Trying pattern rule '%: %.sh' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.sh'.
  Not found 'tools-mingw-release64.sh'.
  Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64,v'.
  Not found 'tools-mingw-release64,v'.
  Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'RCS/tools-mingw-release64,v'.
  Not found 'RCS/tools-mingw-release64,v'.
  Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'RCS/tools-mingw-release64'.
  Not found 'RCS/tools-mingw-release64'.
  Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 's.tools-mingw-release64'.
  Not found 's.tools-mingw-release64'.
  Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'SCCS/s.tools-mingw-release64'.
  Not found 'SCCS/s.tools-mingw-release64'.
  Trying harder.
  Trying pattern rule '%: %.o' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.o'.
  Looking for a rule with intermediate file 'tools-mingw-release64.o'.
   Avoiding implicit rule recursion for rule '%: %.o'.
   Trying pattern rule '%.o: %.c' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.c'.
   Not found 'tools-mingw-release64.c'.
   Trying pattern rule '%.o: %.cc' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.cc'.
   Not found 'tools-mingw-release64.cc'.
   Trying pattern rule '%.o: %.C' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.C'.
   Not found 'tools-mingw-release64.C'.
   Trying pattern rule '%.o: %.cpp' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.cpp'.
   Not found 'tools-mingw-release64.cpp'.
   Trying pattern rule '%.o: %.p' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.p'.
   Not found 'tools-mingw-release64.p'.
   Trying pattern rule '%.o: %.f' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.f'.
   Not found 'tools-mingw-release64.f'.
   Trying pattern rule '%.o: %.F' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.F'.
   Not found 'tools-mingw-release64.F'.
   Trying pattern rule '%.o: %.m' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.m'.
   Not found 'tools-mingw-release64.m'.
   Trying pattern rule '%.o: %.r' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.r'.
   Not found 'tools-mingw-release64.r'.
   Trying pattern rule '%.o: %.s' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.s'.
   Not found 'tools-mingw-release64.s'.
   Trying pattern rule '%.o: %.S' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.S'.
   Not found 'tools-mingw-release64.S'.
   Trying pattern rule '%.o: %.mod' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.mod'.
   Not found 'tools-mingw-release64.mod'.
   Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.o'.
   Trying implicit prerequisite 'tools-mingw-release64.o,v'.
   Not found 'tools-mingw-release64.o,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.o'.
   Trying implicit prerequisite 'RCS/tools-mingw-release64.o,v'.
   Not found 'RCS/tools-mingw-release64.o,v'.
   Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.o'.
   Trying implicit prerequisite 'RCS/tools-mingw-release64.o'.
   Not found 'RCS/tools-mingw-release64.o'.
   Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.o'.
   Trying implicit prerequisite 's.tools-mingw-release64.o'.
   Not found 's.tools-mingw-release64.o'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.o'.
   Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.o'.
   Not found 'SCCS/s.tools-mingw-release64.o'.
   Trying harder.
   Trying pattern rule '%.o: %.c' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.c'.
   Looking for a rule with intermediate file 'tools-mingw-release64.c'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.c'.
    Trying pattern rule '%.c: %.y' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.y'.
    Not found 'tools-mingw-release64.y'.
    Trying pattern rule '%.c: %.l' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.l'.
    Not found 'tools-mingw-release64.l'.
    Trying pattern rule '%.c: %.w' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.w'.
    Not found 'tools-mingw-release64.w'.
    Trying pattern rule '%.c: %.w %.ch' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.w'.
    Not found 'tools-mingw-release64.w'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.c'.
    Trying implicit prerequisite 'tools-mingw-release64.c,v'.
    Not found 'tools-mingw-release64.c,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.c'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.c,v'.
    Not found 'RCS/tools-mingw-release64.c,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.c'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.c'.
    Not found 'RCS/tools-mingw-release64.c'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.c'.
    Trying implicit prerequisite 's.tools-mingw-release64.c'.
    Not found 's.tools-mingw-release64.c'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.c'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.c'.
    Not found 'SCCS/s.tools-mingw-release64.c'.
    Trying harder.
    Trying pattern rule '%.c: %.y' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.y'.
    Looking for a rule with intermediate file 'tools-mingw-release64.y'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.c'.
     Avoiding implicit rule recursion for rule '%.c: %.y'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.y'.
     Trying implicit prerequisite 'tools-mingw-release64.y,v'.
     Not found 'tools-mingw-release64.y,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.y'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.y,v'.
     Not found 'RCS/tools-mingw-release64.y,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.y'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.y'.
     Not found 'RCS/tools-mingw-release64.y'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.y'.
     Trying implicit prerequisite 's.tools-mingw-release64.y'.
     Not found 's.tools-mingw-release64.y'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.y'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.y'.
     Not found 'SCCS/s.tools-mingw-release64.y'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.y'.
    Rejecting rule '%.c: %.y' due to impossible prerequisite 'tools-mingw-release64.y'.
    Trying pattern rule '%.c: %.l' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.l'.
    Looking for a rule with intermediate file 'tools-mingw-release64.l'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.c'.
     Avoiding implicit rule recursion for rule '%.c: %.l'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.l'.
     Trying implicit prerequisite 'tools-mingw-release64.l,v'.
     Not found 'tools-mingw-release64.l,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.l'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.l,v'.
     Not found 'RCS/tools-mingw-release64.l,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.l'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.l'.
     Not found 'RCS/tools-mingw-release64.l'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.l'.
     Trying implicit prerequisite 's.tools-mingw-release64.l'.
     Not found 's.tools-mingw-release64.l'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.l'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.l'.
     Not found 'SCCS/s.tools-mingw-release64.l'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.l'.
    Rejecting rule '%.c: %.l' due to impossible prerequisite 'tools-mingw-release64.l'.
    Trying pattern rule '%.c: %.w' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.w'.
    Looking for a rule with intermediate file 'tools-mingw-release64.w'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.c'.
     Avoiding implicit rule recursion for rule '%.c: %.w'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.w'.
     Trying implicit prerequisite 'tools-mingw-release64.w,v'.
     Not found 'tools-mingw-release64.w,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.w'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.w,v'.
     Not found 'RCS/tools-mingw-release64.w,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.w'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.w'.
     Not found 'RCS/tools-mingw-release64.w'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.w'.
     Trying implicit prerequisite 's.tools-mingw-release64.w'.
     Not found 's.tools-mingw-release64.w'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.w'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.w'.
     Not found 'SCCS/s.tools-mingw-release64.w'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.w'.
    Rejecting rule '%.c: %.w' due to impossible prerequisite 'tools-mingw-release64.w'.
    Trying pattern rule '%.c: %.w %.ch' with stem 'tools-mingw-release64'.
    Rejecting rule '%.c: %.w %.ch' due to impossible implicit prerequisite 'tools-mingw-release64.w'.
   No implicit rule found for 'tools-mingw-release64.c'.
   Rejecting rule '%.o: %.c' due to impossible prerequisite 'tools-mingw-release64.c'.
   Trying pattern rule '%.o: %.cc' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.cc'.
   Looking for a rule with intermediate file 'tools-mingw-release64.cc'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.cc'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.cc'.
    Trying implicit prerequisite 'tools-mingw-release64.cc,v'.
    Not found 'tools-mingw-release64.cc,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.cc'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.cc,v'.
    Not found 'RCS/tools-mingw-release64.cc,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.cc'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.cc'.
    Not found 'RCS/tools-mingw-release64.cc'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.cc'.
    Trying implicit prerequisite 's.tools-mingw-release64.cc'.
    Not found 's.tools-mingw-release64.cc'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.cc'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.cc'.
    Not found 'SCCS/s.tools-mingw-release64.cc'.
    Trying harder.
   No implicit rule found for 'tools-mingw-release64.cc'.
   Rejecting rule '%.o: %.cc' due to impossible prerequisite 'tools-mingw-release64.cc'.
   Trying pattern rule '%.o: %.C' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.C'.
   Looking for a rule with intermediate file 'tools-mingw-release64.C'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.C'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.C'.
    Trying implicit prerequisite 'tools-mingw-release64.C,v'.
    Not found 'tools-mingw-release64.C,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.C'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.C,v'.
    Not found 'RCS/tools-mingw-release64.C,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.C'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.C'.
    Not found 'RCS/tools-mingw-release64.C'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.C'.
    Trying implicit prerequisite 's.tools-mingw-release64.C'.
    Not found 's.tools-mingw-release64.C'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.C'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.C'.
    Not found 'SCCS/s.tools-mingw-release64.C'.
    Trying harder.
   No implicit rule found for 'tools-mingw-release64.C'.
   Rejecting rule '%.o: %.C' due to impossible prerequisite 'tools-mingw-release64.C'.
   Trying pattern rule '%.o: %.cpp' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.cpp'.
   Looking for a rule with intermediate file 'tools-mingw-release64.cpp'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.cpp'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.cpp'.
    Trying implicit prerequisite 'tools-mingw-release64.cpp,v'.
    Not found 'tools-mingw-release64.cpp,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.cpp'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.cpp,v'.
    Not found 'RCS/tools-mingw-release64.cpp,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.cpp'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.cpp'.
    Not found 'RCS/tools-mingw-release64.cpp'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.cpp'.
    Trying implicit prerequisite 's.tools-mingw-release64.cpp'.
    Not found 's.tools-mingw-release64.cpp'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.cpp'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.cpp'.
    Not found 'SCCS/s.tools-mingw-release64.cpp'.
    Trying harder.
   No implicit rule found for 'tools-mingw-release64.cpp'.
   Rejecting rule '%.o: %.cpp' due to impossible prerequisite 'tools-mingw-release64.cpp'.
   Trying pattern rule '%.o: %.p' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.p'.
   Looking for a rule with intermediate file 'tools-mingw-release64.p'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.p'.
    Trying pattern rule '%.p: %.web' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.web'.
    Not found 'tools-mingw-release64.web'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.p'.
    Trying implicit prerequisite 'tools-mingw-release64.p,v'.
    Not found 'tools-mingw-release64.p,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.p'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.p,v'.
    Not found 'RCS/tools-mingw-release64.p,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.p'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.p'.
    Not found 'RCS/tools-mingw-release64.p'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.p'.
    Trying implicit prerequisite 's.tools-mingw-release64.p'.
    Not found 's.tools-mingw-release64.p'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.p'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.p'.
    Not found 'SCCS/s.tools-mingw-release64.p'.
    Trying harder.
    Trying pattern rule '%.p: %.web' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.web'.
    Looking for a rule with intermediate file 'tools-mingw-release64.web'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.p'.
     Avoiding implicit rule recursion for rule '%.p: %.web'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.web'.
     Trying implicit prerequisite 'tools-mingw-release64.web,v'.
     Not found 'tools-mingw-release64.web,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.web'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.web,v'.
     Not found 'RCS/tools-mingw-release64.web,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.web'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.web'.
     Not found 'RCS/tools-mingw-release64.web'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.web'.
     Trying implicit prerequisite 's.tools-mingw-release64.web'.
     Not found 's.tools-mingw-release64.web'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.web'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.web'.
     Not found 'SCCS/s.tools-mingw-release64.web'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.web'.
    Rejecting rule '%.p: %.web' due to impossible prerequisite 'tools-mingw-release64.web'.
   No implicit rule found for 'tools-mingw-release64.p'.
   Rejecting rule '%.o: %.p' due to impossible prerequisite 'tools-mingw-release64.p'.
   Trying pattern rule '%.o: %.f' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.f'.
   Looking for a rule with intermediate file 'tools-mingw-release64.f'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.f'.
    Trying pattern rule '%.f: %.F' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.F'.
    Not found 'tools-mingw-release64.F'.
    Trying pattern rule '%.f: %.r' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.r'.
    Not found 'tools-mingw-release64.r'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.f'.
    Trying implicit prerequisite 'tools-mingw-release64.f,v'.
    Not found 'tools-mingw-release64.f,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.f'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.f,v'.
    Not found 'RCS/tools-mingw-release64.f,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.f'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.f'.
    Not found 'RCS/tools-mingw-release64.f'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.f'.
    Trying implicit prerequisite 's.tools-mingw-release64.f'.
    Not found 's.tools-mingw-release64.f'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.f'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.f'.
    Not found 'SCCS/s.tools-mingw-release64.f'.
    Trying harder.
    Trying pattern rule '%.f: %.F' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.F'.
    Looking for a rule with intermediate file 'tools-mingw-release64.F'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.f'.
     Avoiding implicit rule recursion for rule '%.f: %.F'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.F'.
     Trying implicit prerequisite 'tools-mingw-release64.F,v'.
     Not found 'tools-mingw-release64.F,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.F'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.F,v'.
     Not found 'RCS/tools-mingw-release64.F,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.F'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.F'.
     Not found 'RCS/tools-mingw-release64.F'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.F'.
     Trying implicit prerequisite 's.tools-mingw-release64.F'.
     Not found 's.tools-mingw-release64.F'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.F'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.F'.
     Not found 'SCCS/s.tools-mingw-release64.F'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.F'.
    Rejecting rule '%.f: %.F' due to impossible prerequisite 'tools-mingw-release64.F'.
    Trying pattern rule '%.f: %.r' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.r'.
    Looking for a rule with intermediate file 'tools-mingw-release64.r'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.f'.
     Avoiding implicit rule recursion for rule '%.f: %.r'.
     Trying pattern rule '%.r: %.l' with stem 'tools-mingw-release64'.
     Rejecting rule '%.r: %.l' due to impossible implicit prerequisite 'tools-mingw-release64.l'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.r'.
     Trying implicit prerequisite 'tools-mingw-release64.r,v'.
     Not found 'tools-mingw-release64.r,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.r'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.r,v'.
     Not found 'RCS/tools-mingw-release64.r,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.r'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.r'.
     Not found 'RCS/tools-mingw-release64.r'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.r'.
     Trying implicit prerequisite 's.tools-mingw-release64.r'.
     Not found 's.tools-mingw-release64.r'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.r'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.r'.
     Not found 'SCCS/s.tools-mingw-release64.r'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.r'.
    Rejecting rule '%.f: %.r' due to impossible prerequisite 'tools-mingw-release64.r'.
   No implicit rule found for 'tools-mingw-release64.f'.
   Rejecting rule '%.o: %.f' due to impossible prerequisite 'tools-mingw-release64.f'.
   Trying pattern rule '%.o: %.F' with stem 'tools-mingw-release64'.
   Rejecting rule '%.o: %.F' due to impossible implicit prerequisite 'tools-mingw-release64.F'.
   Trying pattern rule '%.o: %.m' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.m'.
   Looking for a rule with intermediate file 'tools-mingw-release64.m'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.m'.
    Trying pattern rule '%.m: %.ym' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.ym'.
    Not found 'tools-mingw-release64.ym'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.m'.
    Trying implicit prerequisite 'tools-mingw-release64.m,v'.
    Not found 'tools-mingw-release64.m,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.m'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.m,v'.
    Not found 'RCS/tools-mingw-release64.m,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.m'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.m'.
    Not found 'RCS/tools-mingw-release64.m'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.m'.
    Trying implicit prerequisite 's.tools-mingw-release64.m'.
    Not found 's.tools-mingw-release64.m'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.m'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.m'.
    Not found 'SCCS/s.tools-mingw-release64.m'.
    Trying harder.
    Trying pattern rule '%.m: %.ym' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.ym'.
    Looking for a rule with intermediate file 'tools-mingw-release64.ym'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.m'.
     Avoiding implicit rule recursion for rule '%.m: %.ym'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.ym'.
     Trying implicit prerequisite 'tools-mingw-release64.ym,v'.
     Not found 'tools-mingw-release64.ym,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.ym'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.ym,v'.
     Not found 'RCS/tools-mingw-release64.ym,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.ym'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.ym'.
     Not found 'RCS/tools-mingw-release64.ym'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.ym'.
     Trying implicit prerequisite 's.tools-mingw-release64.ym'.
     Not found 's.tools-mingw-release64.ym'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.ym'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.ym'.
     Not found 'SCCS/s.tools-mingw-release64.ym'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.ym'.
    Rejecting rule '%.m: %.ym' due to impossible prerequisite 'tools-mingw-release64.ym'.
   No implicit rule found for 'tools-mingw-release64.m'.
   Rejecting rule '%.o: %.m' due to impossible prerequisite 'tools-mingw-release64.m'.
   Trying pattern rule '%.o: %.r' with stem 'tools-mingw-release64'.
   Rejecting rule '%.o: %.r' due to impossible implicit prerequisite 'tools-mingw-release64.r'.
   Trying pattern rule '%.o: %.s' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.s'.
   Looking for a rule with intermediate file 'tools-mingw-release64.s'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.s'.
    Trying pattern rule '%.s: %.S' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.S'.
    Not found 'tools-mingw-release64.S'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.s'.
    Trying implicit prerequisite 'tools-mingw-release64.s,v'.
    Not found 'tools-mingw-release64.s,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.s'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.s,v'.
    Not found 'RCS/tools-mingw-release64.s,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.s'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.s'.
    Not found 'RCS/tools-mingw-release64.s'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.s'.
    Trying implicit prerequisite 's.tools-mingw-release64.s'.
    Not found 's.tools-mingw-release64.s'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.s'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.s'.
    Not found 'SCCS/s.tools-mingw-release64.s'.
    Trying harder.
    Trying pattern rule '%.s: %.S' with stem 'tools-mingw-release64'.
    Trying implicit prerequisite 'tools-mingw-release64.S'.
    Looking for a rule with intermediate file 'tools-mingw-release64.S'.
     Avoiding implicit rule recursion for rule '%: %.o'.
     Avoiding implicit rule recursion for rule '%.o: %.s'.
     Avoiding implicit rule recursion for rule '%.s: %.S'.
     Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.S'.
     Trying implicit prerequisite 'tools-mingw-release64.S,v'.
     Not found 'tools-mingw-release64.S,v'.
     Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.S'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.S,v'.
     Not found 'RCS/tools-mingw-release64.S,v'.
     Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.S'.
     Trying implicit prerequisite 'RCS/tools-mingw-release64.S'.
     Not found 'RCS/tools-mingw-release64.S'.
     Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.S'.
     Trying implicit prerequisite 's.tools-mingw-release64.S'.
     Not found 's.tools-mingw-release64.S'.
     Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.S'.
     Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.S'.
     Not found 'SCCS/s.tools-mingw-release64.S'.
     Trying harder.
    No implicit rule found for 'tools-mingw-release64.S'.
    Rejecting rule '%.s: %.S' due to impossible prerequisite 'tools-mingw-release64.S'.
   No implicit rule found for 'tools-mingw-release64.s'.
   Rejecting rule '%.o: %.s' due to impossible prerequisite 'tools-mingw-release64.s'.
   Trying pattern rule '%.o: %.S' with stem 'tools-mingw-release64'.
   Rejecting rule '%.o: %.S' due to impossible implicit prerequisite 'tools-mingw-release64.S'.
   Trying pattern rule '%.o: %.mod' with stem 'tools-mingw-release64'.
   Trying implicit prerequisite 'tools-mingw-release64.mod'.
   Looking for a rule with intermediate file 'tools-mingw-release64.mod'.
    Avoiding implicit rule recursion for rule '%: %.o'.
    Avoiding implicit rule recursion for rule '%.o: %.mod'.
    Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.mod'.
    Trying implicit prerequisite 'tools-mingw-release64.mod,v'.
    Not found 'tools-mingw-release64.mod,v'.
    Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.mod'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.mod,v'.
    Not found 'RCS/tools-mingw-release64.mod,v'.
    Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.mod'.
    Trying implicit prerequisite 'RCS/tools-mingw-release64.mod'.
    Not found 'RCS/tools-mingw-release64.mod'.
    Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.mod'.
    Trying implicit prerequisite 's.tools-mingw-release64.mod'.
    Not found 's.tools-mingw-release64.mod'.
    Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.mod'.
    Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.mod'.
    Not found 'SCCS/s.tools-mingw-release64.mod'.
    Trying harder.
   No implicit rule found for 'tools-mingw-release64.mod'.
   Rejecting rule '%.o: %.mod' due to impossible prerequisite 'tools-mingw-release64.mod'.
  No implicit rule found for 'tools-mingw-release64.o'.
  Rejecting rule '%: %.o' due to impossible prerequisite 'tools-mingw-release64.o'.
  Trying pattern rule '%: %.c' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.c' due to impossible implicit prerequisite 'tools-mingw-release64.c'.
  Trying pattern rule '%: %.cc' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.cc' due to impossible implicit prerequisite 'tools-mingw-release64.cc'.
  Trying pattern rule '%: %.C' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.C' due to impossible implicit prerequisite 'tools-mingw-release64.C'.
  Trying pattern rule '%: %.cpp' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.cpp' due to impossible implicit prerequisite 'tools-mingw-release64.cpp'.
  Trying pattern rule '%: %.p' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.p' due to impossible implicit prerequisite 'tools-mingw-release64.p'.
  Trying pattern rule '%: %.f' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.f' due to impossible implicit prerequisite 'tools-mingw-release64.f'.
  Trying pattern rule '%: %.F' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.F' due to impossible implicit prerequisite 'tools-mingw-release64.F'.
  Trying pattern rule '%: %.m' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.m' due to impossible implicit prerequisite 'tools-mingw-release64.m'.
  Trying pattern rule '%: %.r' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.r' due to impossible implicit prerequisite 'tools-mingw-release64.r'.
  Trying pattern rule '%: %.s' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.s' due to impossible implicit prerequisite 'tools-mingw-release64.s'.
  Trying pattern rule '%: %.S' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.S' due to impossible implicit prerequisite 'tools-mingw-release64.S'.
  Trying pattern rule '%: %.mod' with stem 'tools-mingw-release64'.
  Rejecting rule '%: %.mod' due to impossible implicit prerequisite 'tools-mingw-release64.mod'.
  Trying pattern rule '%: %.sh' with stem 'tools-mingw-release64'.
  Trying implicit prerequisite 'tools-mingw-release64.sh'.
  Looking for a rule with intermediate file 'tools-mingw-release64.sh'.
   Avoiding implicit rule recursion for rule '%: %.sh'.
   Trying pattern rule '%:: %,v' with stem 'tools-mingw-release64.sh'.
   Trying implicit prerequisite 'tools-mingw-release64.sh,v'.
   Not found 'tools-mingw-release64.sh,v'.
   Trying pattern rule '%:: RCS/%,v' with stem 'tools-mingw-release64.sh'.
   Trying implicit prerequisite 'RCS/tools-mingw-release64.sh,v'.
   Not found 'RCS/tools-mingw-release64.sh,v'.
   Trying pattern rule '%:: RCS/%' with stem 'tools-mingw-release64.sh'.
   Trying implicit prerequisite 'RCS/tools-mingw-release64.sh'.
   Not found 'RCS/tools-mingw-release64.sh'.
   Trying pattern rule '%:: s.%' with stem 'tools-mingw-release64.sh'.
   Trying implicit prerequisite 's.tools-mingw-release64.sh'.
   Not found 's.tools-mingw-release64.sh'.
   Trying pattern rule '%:: SCCS/s.%' with stem 'tools-mingw-release64.sh'.
   Trying implicit prerequisite 'SCCS/s.tools-mingw-release64.sh'.
   Not found 'SCCS/s.tools-mingw-release64.sh'.
   Trying harder.
  No implicit rule found for 'tools-mingw-release64.sh'.
  Rejecting rule '%: %.sh' due to impossible prerequisite 'tools-mingw-release64.sh'.
 No implicit rule found for 'tools-mingw-release64'.
 Considering target file 'build/mingw64/bin/texturec.exe'.
  File 'build/mingw64/bin/texturec.exe' does not exist.
  Considering target file 'build/projects/mingw'.
  Finished prerequisites of target file 'build/projects/mingw'.
  No need to remake target 'build/projects/mingw'.
 Finished prerequisites of target file 'build/mingw64/bin/texturec.exe'.
 Must remake target 'build/mingw64/bin/texturec.exe'.
makefile:105: update target 'build/mingw64/bin/texturec.exe' due to: target does not exist
"/usr/bin/make" -j1 -R -C 3rdparty/bimg/.build/projects/gmake-mingw-gcc config=release64 texturec
Putting child 0xa0004e120 (build/mingw64/bin/texturec.exe) PID 7406 on the chain.
Live child 0xa0004e120 (build/mingw64/bin/texturec.exe) PID 7406 
GNU Make 4.4.1
Built for x86_64-pc-msys
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'Makefile'...
Updating makefiles....
 Considering target file 'Makefile'.
  Looking for an implicit rule for 'Makefile'.
  No implicit rule found for 'Makefile'.
 Finished prerequisites of target file 'Makefile'.
 No need to remake target 'Makefile'.
Updating goal targets....
Considering target file 'texturec'.
 File 'texturec' does not exist.
 Considering target file 'bimg_decode'.
  File 'bimg_decode' does not exist.
  Considering target file 'bx'.
   File 'bx' does not exist.
  Finished prerequisites of target file 'bx'.
  Must remake target 'bx'.
make[1]: Entering directory '/c/Users/Ishmael/foss/crown/3rdparty/bimg/.build/projects/gmake-mingw-gcc'
Makefile:16: update target 'bx' due to: target is .PHONY
echo "==== Building bx (release64) ===="
Putting child 0xa0001e820 (bx) PID 7407 on the chain.
Live child 0xa0001e820 (bx) PID 7407 
==== Building bx (release64) ====
Reaping winning child 0xa0001e820 PID 7407 
/usr/bin/make --no-print-directory -C . -f bx.make
Live child 0xa0001e820 (bx) PID 7408 
GNU Make 4.4.1
Built for x86_64-pc-msys
Copyright (C) 1988-2023 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Reading makefiles...
Reading makefile 'bx.make'...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d' (search path) (don't care) (no ~ expansion)...
Reading makefile '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d' (search path) (don't care) (no ~ expansion)...
Updating makefiles....
 Considering target file 'bx.make'.
  Looking for an implicit rule for 'bx.make'.
  No implicit rule found for 'bx.make'.
 Finished prerequisites of target file 'bx.make'.
 No need to remake target 'bx.make'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.d'.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.d'.
 No need to remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bounds.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/bx.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/commandline.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/crtnone.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/debug.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/dtoa.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/easing.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/file.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/filepath.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/hash.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/math.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/mutex.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/os.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/process.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/semaphore.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/settings.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/sort.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/string.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/thread.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/timer.d'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d'.
  File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d' does not exist.
  Looking for an implicit rule for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d'.
  No implicit rule found for '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d'.
 Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d'.
 Failed to remake target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/url.d'.
Updating goal targets....
Considering target file 'all'.
 File 'all' does not exist.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx'.
 No need to remake target '../../win64_mingw-gcc/obj/x64/Release/bx'.
 Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src'.
 Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src'.
 No need to remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src'.
 Considering target file '../../win64_mingw-gcc/bin'.
 Finished prerequisites of target file '../../win64_mingw-gcc/bin'.
 No need to remake target '../../win64_mingw-gcc/bin'.
 Considering target file 'prebuild'.
  File 'prebuild' does not exist.
 Finished prerequisites of target file 'prebuild'.
 Must remake target 'prebuild'.
bx.make:412: update target 'prebuild' due to: target is .PHONY
 Successfully remade target file 'prebuild'.
 Considering target file 'prelink'.
  File 'prelink' does not exist.
 Finished prerequisites of target file 'prelink'.
 Must remake target 'prelink'.
bx.make:415: update target 'prelink' due to: target is .PHONY
 Successfully remade target file 'prelink'.
 Considering target file '../../win64_mingw-gcc/bin/libbxRelease.a'.
  File '../../win64_mingw-gcc/bin/libbxRelease.a' does not exist.
  Considering target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o'.
   File '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o' does not exist.
   Considering target file '../../../../bx/src/allocator.cpp'.
    Looking for an implicit rule for '../../../../bx/src/allocator.cpp'.
    No implicit rule found for '../../../../bx/src/allocator.cpp'.
   Finished prerequisites of target file '../../../../bx/src/allocator.cpp'.
   No need to remake target '../../../../bx/src/allocator.cpp'.
   Considering target file 'bx.make'.
   File 'bx.make' was considered already.
   Pruning file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src'.
   Pruning file '../../../../bx/src/allocator.cpp'.
   Considering target file '../../../../bx/include/bx/allocator.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/allocator.h'.
    No implicit rule found for '../../../../bx/include/bx/allocator.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/allocator.h'.
   No recipe for '../../../../bx/include/bx/allocator.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/allocator.h'.
   Considering target file '../../../../bx/include/bx/bx.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/bx.h'.
    No implicit rule found for '../../../../bx/include/bx/bx.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/bx.h'.
   No recipe for '../../../../bx/include/bx/bx.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/bx.h'.
   Considering target file '../../../../bx/include/compat/mingw/alloca.h'.
    Looking for an implicit rule for '../../../../bx/include/compat/mingw/alloca.h'.
    No implicit rule found for '../../../../bx/include/compat/mingw/alloca.h'.
   Finished prerequisites of target file '../../../../bx/include/compat/mingw/alloca.h'.
   No recipe for '../../../../bx/include/compat/mingw/alloca.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/compat/mingw/alloca.h'.
   Considering target file '../../../../bx/include/bx/platform.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/platform.h'.
    No implicit rule found for '../../../../bx/include/bx/platform.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/platform.h'.
   No recipe for '../../../../bx/include/bx/platform.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/platform.h'.
   Considering target file '../../../../bx/include/bx/config.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/config.h'.
    No implicit rule found for '../../../../bx/include/bx/config.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/config.h'.
   No recipe for '../../../../bx/include/bx/config.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/config.h'.
   Considering target file '../../../../bx/include/bx/constants.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/constants.h'.
    No implicit rule found for '../../../../bx/include/bx/constants.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/constants.h'.
   No recipe for '../../../../bx/include/bx/constants.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/constants.h'.
   Considering target file '../../../../bx/include/bx/macros.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/macros.h'.
    No implicit rule found for '../../../../bx/include/bx/macros.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/macros.h'.
   No recipe for '../../../../bx/include/bx/macros.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/macros.h'.
   Considering target file '../../../../bx/include/bx/debug.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/debug.h'.
    No implicit rule found for '../../../../bx/include/bx/debug.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/debug.h'.
   No recipe for '../../../../bx/include/bx/debug.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/debug.h'.
   Considering target file '../../../../bx/include/bx/typetraits.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/typetraits.h'.
    No implicit rule found for '../../../../bx/include/bx/typetraits.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/typetraits.h'.
   No recipe for '../../../../bx/include/bx/typetraits.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/typetraits.h'.
   Considering target file '../../../../bx/include/bx/inline/typetraits.inl'.
    Looking for an implicit rule for '../../../../bx/include/bx/inline/typetraits.inl'.
    No implicit rule found for '../../../../bx/include/bx/inline/typetraits.inl'.
   Finished prerequisites of target file '../../../../bx/include/bx/inline/typetraits.inl'.
   No recipe for '../../../../bx/include/bx/inline/typetraits.inl' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/inline/typetraits.inl'.
   Considering target file '../../../../bx/include/bx/inline/bx.inl'.
    Looking for an implicit rule for '../../../../bx/include/bx/inline/bx.inl'.
    No implicit rule found for '../../../../bx/include/bx/inline/bx.inl'.
   Finished prerequisites of target file '../../../../bx/include/bx/inline/bx.inl'.
   No recipe for '../../../../bx/include/bx/inline/bx.inl' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/inline/bx.inl'.
   Considering target file '../../../../bx/include/bx/uint32_t.h'.
    Looking for an implicit rule for '../../../../bx/include/bx/uint32_t.h'.
    No implicit rule found for '../../../../bx/include/bx/uint32_t.h'.
   Finished prerequisites of target file '../../../../bx/include/bx/uint32_t.h'.
   No recipe for '../../../../bx/include/bx/uint32_t.h' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/uint32_t.h'.
   Considering target file '../../../../bx/include/bx/inline/uint32_t.inl'.
    Looking for an implicit rule for '../../../../bx/include/bx/inline/uint32_t.inl'.
    No implicit rule found for '../../../../bx/include/bx/inline/uint32_t.inl'.
   Finished prerequisites of target file '../../../../bx/include/bx/inline/uint32_t.inl'.
   No recipe for '../../../../bx/include/bx/inline/uint32_t.inl' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/inline/uint32_t.inl'.
   Considering target file '../../../../bx/include/bx/inline/allocator.inl'.
    Looking for an implicit rule for '../../../../bx/include/bx/inline/allocator.inl'.
    No implicit rule found for '../../../../bx/include/bx/inline/allocator.inl'.
   Finished prerequisites of target file '../../../../bx/include/bx/inline/allocator.inl'.
   No recipe for '../../../../bx/include/bx/inline/allocator.inl' and no prerequisites actually changed.
   No need to remake target '../../../../bx/include/bx/inline/allocator.inl'.
  Finished prerequisites of target file '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o'.
  Must remake target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o'.
bx.make:440: update target '../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o' due to: target does not exist
echo allocator.cpp
Putting child 0xa00037cb0 (../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o) PID 7409 on the chain.
Live child 0xa00037cb0 (../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o) PID 7409 
allocator.cpp
Reaping winning child 0xa00037cb0 PID 7409 
C:\\msys64\\mingw64/bin/x86_64-w64-mingw32-g++    -MMD -MP -MP -D__STDC_LIMIT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_CONSTANT_MACROS -DNDEBUG -DWIN32 -DMINGW_HAS_SECURE_API=1 -DBX_CONFIG_DEBUG=0 -I"../../../../bx/include/compat/mingw" -I"../../../../bx/include" -I"../../../../bx/3rdparty"  -Wall -Wextra -ffast-math -fomit-frame-pointer -g -O3 -m64 -std=c++14 -fno-rtti -fno-exceptions -Wshadow -Wunused-value -fdata-sections -ffunction-sections -msse4.2 -Wundef -m64  -o "../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o" -c "../../../../bx/src/allocator.cpp"
Live child 0xa00037cb0 (../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o) PID 7410 
Reaping losing child 0xa00037cb0 PID 7410 
Removing child 0xa00037cb0 PID 7410 from chain.
Reaping losing child 0xa0001e820 PID 7408 
Removing child 0xa0001e820 PID 7408 from chain.
make[1]: Leaving directory '/c/Users/Ishmael/foss/crown/3rdparty/bimg/.build/projects/gmake-mingw-gcc'
Reaping losing child 0xa0004e120 PID 7406 
Removing child 0xa0004e120 PID 7406 from chain.
make[2]: *** [bx.make:441: ../../win64_mingw-gcc/obj/x64/Release/bx/bx/src/allocator.o] Error 1
make[1]: *** [Makefile:17: bx] Error 2
make: *** [makefile:105: build/mingw64/bin/texturec.exe] Error 2

@dbartolini
Copy link
Collaborator

dbartolini commented Oct 20, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants