-
Notifications
You must be signed in to change notification settings - Fork 7
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
Upgrade to 9.4.5 -- Add IndexBinaryOp #136
Conversation
Tests are passing (🎉), but wheel builds are failing. @alugowski do you have a moment to take a look? |
Tests use the library built by conda, wheels build it ourselves. Looks like there are differences. Linux error:
Seems related to this point in the release notes for upstream 9.4.2:
Does that mean the library needs to be built differently? Or cffi needs to be updated? We don't have the JIT, so if someone uses those JIT-only kernels then something appropriate needs to happen. |
On macos:
Sounds like the directories where GraphBLAS puts things changed yet again. Someone needs to track down the new include directory on macos and make sure the build system looks there. IIRC the include search path is around here:
|
Windows failure appears to also be the undefined symbols to the no-longer-included kernels. |
I didn't move the location of GraphBLAS.h. Also, the library still has GB__Adot2B__plus_firstj_int32:
So the error you're seeing is not related to any symbols I removed. I did remove the built-in int8 and uint8 types from most of the FactoryKernels, to reduce the compile time and library size. These are all that are left for uint8:
|
GraphBLAS will still compute the correct result for uint8 and int8 types. It will either use the JIT if that's available, or if not, it will use the generic kernels. Those are slower but they still work just fine. |
I don't know if this is related: When I saw you were having these errors, I thought I would try some more testing of GraphBLAS 9.4.2 by updating the main SuiteSparse repo with this version (I hadn't done that yet). The SuiteSparse repo has an extensive cross-platform CI. I encountered some errors because 10 semirings got inadvertently defined twice in GraphBLAS.h: It's a quick fix, but I'm not sure if this problem is related to yours. These extra definitions only cause problems if GraphBLAS.h is #include'd in a C++ program, since one set of the duplicate definitions was inside an extern "C" {...} block and the other wasn't. I'll release a GraphBLAS 9.4.3 shortly -- probably by tomorrow (Dec 20). |
@DrTimothyAldenDavis it looks like it might be related. The Windows build has a better error message. Linux fails at library import while Windows fails earlier at the GraphBLAS link step and lists all the missing symbols, not just one. See full list in the Actions output: https://github.com/GraphBLAS/python-suitesparse-graphblas/actions/runs/12404089168/job/34628708451?pr=136#step:9:3393 They're repeats of these, just called from different
|
@DrTimothyAldenDavis we're seeing a lot of undefined symbols when using the SuiteSparse:GraphBLAS 9.4.4 such as
Any idea what's going on? From Windows buildC:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4b0b3): undefined reference to `GB__Adot2B__plus_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cc5e): undefined reference to `GB__Adot2B__max_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4ccc4): undefined reference to `GB__Adot2B__min_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cd2a): undefined reference to `GB__Adot2B__any_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cd90): undefined reference to `GB__Adot2B__times_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cdf6): undefined reference to `GB__Adot2B__plus_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4ce5c): undefined reference to `GB__Adot2B__max_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cec2): undefined reference to `GB__Adot2B__min_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cf28): undefined reference to `GB__Adot2B__any_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cf8e): undefined reference to `GB__Adot2B__times_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4cff4): undefined reference to `GB__Adot2B__plus_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d05a): undefined reference to `GB__Adot2B__max_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d0c0): undefined reference to `GB__Adot2B__min_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d126): undefined reference to `GB__Adot2B__any_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d18c): undefined reference to `GB__Adot2B__times_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d1f2): undefined reference to `GB__Adot2B__plus_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d258): undefined reference to `GB__Adot2B__max_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d2be): undefined reference to `GB__Adot2B__min_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d324): undefined reference to `GB__Adot2B__any_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d38a): undefined reference to `GB__Adot2B__times_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d3f0): undefined reference to `GB__Adot2B__plus_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d456): undefined reference to `GB__Adot2B__max_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d4bc): undefined reference to `GB__Adot2B__min_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d522): undefined reference to `GB__Adot2B__any_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d588): undefined reference to `GB__Adot2B__times_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d5ee): undefined reference to `GB__Adot2B__plus_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d654): undefined reference to `GB__Adot2B__max_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d6ba): undefined reference to `GB__Adot2B__min_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d720): undefined reference to `GB__Adot2B__any_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x4d786): undefined reference to `GB__Adot2B__times_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x50f4e): undefined reference to `GB__Adot2B__plus_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x50fb4): undefined reference to `GB__Adot2B__max_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x5101a): undefined reference to `GB__Adot2B__min_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51080): undefined reference to `GB__Adot2B__any_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x510e6): undefined reference to `GB__Adot2B__times_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51165): undefined reference to `GB__Adot2B__plus_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x511cb): undefined reference to `GB__Adot2B__max_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51231): undefined reference to `GB__Adot2B__min_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51297): undefined reference to `GB__Adot2B__any_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x512fd): undefined reference to `GB__Adot2B__times_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x5137c): undefined reference to `GB__Adot2B__plus_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x513e2): undefined reference to `GB__Adot2B__max_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51448): undefined reference to `GB__Adot2B__min_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x514ae): undefined reference to `GB__Adot2B__any_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51514): undefined reference to `GB__Adot2B__times_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51593): undefined reference to `GB__Adot2B__plus_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x515f9): undefined reference to `GB__Adot2B__max_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x5165f): undefined reference to `GB__Adot2B__min_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x516c5): undefined reference to `GB__Adot2B__any_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x5172b): undefined reference to `GB__Adot2B__times_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x517aa): undefined reference to `GB__Adot2B__plus_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51810): undefined reference to `GB__Adot2B__max_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51876): undefined reference to `GB__Adot2B__min_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x518dc): undefined reference to `GB__Adot2B__any_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51942): undefined reference to `GB__Adot2B__times_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x519c1): undefined reference to `GB__Adot2B__plus_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51a27): undefined reference to `GB__Adot2B__max_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51a8d): undefined reference to `GB__Adot2B__min_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51af3): undefined reference to `GB__Adot2B__any_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot2.c.obj):GB_AxB_dot2.c:(.text+0x51b59): undefined reference to `GB__Adot2B__times_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fc87): undefined reference to `GB__Adot3B__plus_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fce2): undefined reference to `GB__Adot3B__max_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fd01): undefined reference to `GB__Adot3B__min_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fd20): undefined reference to `GB__Adot3B__any_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fd42): undefined reference to `GB__Adot3B__times_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fd64): undefined reference to `GB__Adot3B__min_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fd86): undefined reference to `GB__Adot3B__any_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fda8): undefined reference to `GB__Adot3B__times_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fdca): undefined reference to `GB__Adot3B__times_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fdec): undefined reference to `GB__Adot3B__plus_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fe0e): undefined reference to `GB__Adot3B__max_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fe30): undefined reference to `GB__Adot3B__min_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fe52): undefined reference to `GB__Adot3B__any_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fe74): undefined reference to `GB__Adot3B__times_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fe96): undefined reference to `GB__Adot3B__plus_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4feb8): undefined reference to `GB__Adot3B__max_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4feda): undefined reference to `GB__Adot3B__min_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4fefc): undefined reference to `GB__Adot3B__any_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4ff1e): undefined reference to `GB__Adot3B__plus_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4ff40): undefined reference to `GB__Adot3B__max_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4ff62): undefined reference to `GB__Adot3B__min_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4ff84): undefined reference to `GB__Adot3B__any_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4ffa6): undefined reference to `GB__Adot3B__times_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4ffc8): undefined reference to `GB__Adot3B__plus_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x4ffea): undefined reference to `GB__Adot3B__max_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x5000c): undefined reference to `GB__Adot3B__plus_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x5002e): undefined reference to `GB__Adot3B__max_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x50050): undefined reference to `GB__Adot3B__min_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x50072): undefined reference to `GB__Adot3B__any_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x50094): undefined reference to `GB__Adot3B__times_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x50fff): undefined reference to `GB__Adot3B__plus_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51021): undefined reference to `GB__Adot3B__max_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51043): undefined reference to `GB__Adot3B__min_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51065): undefined reference to `GB__Adot3B__any_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51087): undefined reference to `GB__Adot3B__times_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x510d1): undefined reference to `GB__Adot3B__plus_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x510f3): undefined reference to `GB__Adot3B__max_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51115): undefined reference to `GB__Adot3B__min_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51137): undefined reference to `GB__Adot3B__any_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51159): undefined reference to `GB__Adot3B__times_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x511a3): undefined reference to `GB__Adot3B__plus_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x511c5): undefined reference to `GB__Adot3B__max_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x511e7): undefined reference to `GB__Adot3B__min_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51209): undefined reference to `GB__Adot3B__any_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x5122b): undefined reference to `GB__Adot3B__times_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51275): undefined reference to `GB__Adot3B__plus_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51297): undefined reference to `GB__Adot3B__max_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x512b9): undefined reference to `GB__Adot3B__min_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x512db): undefined reference to `GB__Adot3B__any_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x512fd): undefined reference to `GB__Adot3B__times_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51347): undefined reference to `GB__Adot3B__plus_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51369): undefined reference to `GB__Adot3B__max_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x5138b): undefined reference to `GB__Adot3B__min_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x513ad): undefined reference to `GB__Adot3B__any_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x513cf): undefined reference to `GB__Adot3B__times_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x51419): undefined reference to `GB__Adot3B__plus_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x5143b): undefined reference to `GB__Adot3B__max_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x5145d): undefined reference to `GB__Adot3B__min_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x5147f): undefined reference to `GB__Adot3B__any_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot3.c.obj):GB_AxB_dot3.c:(.text+0x514a1): undefined reference to `GB__Adot3B__times_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x574): undefined reference to `GB__Adot4B__max_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x70c): undefined reference to `GB__Adot4B__max_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x78c): undefined reference to `GB__Adot4B__max_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x80c): undefined reference to `GB__Adot4B__max_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x88c): undefined reference to `GB__Adot4B__max_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xb30): undefined reference to `GB__Adot4B__max_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xb8f): undefined reference to `GB__Adot4B__times_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xbef): undefined reference to `GB__Adot4B__times_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xc4f): undefined reference to `GB__Adot4B__times_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xcaf): undefined reference to `GB__Adot4B__times_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xd0f): undefined reference to `GB__Adot4B__times_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xe66): undefined reference to `GB__Adot4B__times_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xebe): undefined reference to `GB__Adot4B__min_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xf16): undefined reference to `GB__Adot4B__min_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xf6e): undefined reference to `GB__Adot4B__min_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0xfc6): undefined reference to `GB__Adot4B__min_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x101e): undefined reference to `GB__Adot4B__min_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1076): undefined reference to `GB__Adot4B__min_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x114e): undefined reference to `GB__Adot4B__plus_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x11a6): undefined reference to `GB__Adot4B__plus_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x11fe): undefined reference to `GB__Adot4B__plus_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1256): undefined reference to `GB__Adot4B__plus_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x12ae): undefined reference to `GB__Adot4B__plus_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1306): undefined reference to `GB__Adot4B__plus_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1447): undefined reference to `GB__Adot4B__max_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x14bf): undefined reference to `GB__Adot4B__max_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1537): undefined reference to `GB__Adot4B__max_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1597): undefined reference to `GB__Adot4B__times_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x160f): undefined reference to `GB__Adot4B__max_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1687): undefined reference to `GB__Adot4B__max_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x16e7): undefined reference to `GB__Adot4B__times_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x175f): undefined reference to `GB__Adot4B__max_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x17bf): undefined reference to `GB__Adot4B__times_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x181f): undefined reference to `GB__Adot4B__times_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x187f): undefined reference to `GB__Adot4B__times_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x18df): undefined reference to `GB__Adot4B__times_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1b86): undefined reference to `GB__Adot4B__min_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1bde): undefined reference to `GB__Adot4B__min_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1c30): undefined reference to `GB__Adot4B__plus_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1c82): undefined reference to `GB__Adot4B__plus_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1cde): undefined reference to `GB__Adot4B__min_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1d36): undefined reference to `GB__Adot4B__min_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1d88): undefined reference to `GB__Adot4B__plus_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1dde): undefined reference to `GB__Adot4B__min_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1e30): undefined reference to `GB__Adot4B__plus_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1e82): undefined reference to `GB__Adot4B__plus_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1ed4): undefined reference to `GB__Adot4B__plus_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_dot4.c.obj):GB_AxB_dot4.c:(.text+0x1f2e): undefined reference to `GB__Adot4B__min_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0xa34): undefined reference to `GB__AsaxbitB__plus_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1244): undefined reference to `GB__AsaxbitB__max_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x12aa): undefined reference to `GB__AsaxbitB__min_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1310): undefined reference to `GB__AsaxbitB__any_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1376): undefined reference to `GB__AsaxbitB__times_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x13dc): undefined reference to `GB__AsaxbitB__min_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1442): undefined reference to `GB__AsaxbitB__any_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x14a8): undefined reference to `GB__AsaxbitB__times_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x150e): undefined reference to `GB__AsaxbitB__times_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1574): undefined reference to `GB__AsaxbitB__plus_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x15da): undefined reference to `GB__AsaxbitB__max_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1640): undefined reference to `GB__AsaxbitB__min_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x16a6): undefined reference to `GB__AsaxbitB__any_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x170c): undefined reference to `GB__AsaxbitB__times_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1772): undefined reference to `GB__AsaxbitB__plus_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x17d8): undefined reference to `GB__AsaxbitB__max_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x183e): undefined reference to `GB__AsaxbitB__min_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x18a4): undefined reference to `GB__AsaxbitB__any_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x190a): undefined reference to `GB__AsaxbitB__plus_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1970): undefined reference to `GB__AsaxbitB__max_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x19d6): undefined reference to `GB__AsaxbitB__min_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1a3c): undefined reference to `GB__AsaxbitB__any_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1aa2): undefined reference to `GB__AsaxbitB__times_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1b08): undefined reference to `GB__AsaxbitB__plus_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1b6e): undefined reference to `GB__AsaxbitB__max_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1bd4): undefined reference to `GB__AsaxbitB__plus_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1c3a): undefined reference to `GB__AsaxbitB__max_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1ca0): undefined reference to `GB__AsaxbitB__min_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1d06): undefined reference to `GB__AsaxbitB__any_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1d6c): undefined reference to `GB__AsaxbitB__times_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1ec8): undefined reference to `GB__AsaxbitB__plus_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1f2e): undefined reference to `GB__AsaxbitB__max_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1f94): undefined reference to `GB__AsaxbitB__min_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x1ffa): undefined reference to `GB__AsaxbitB__any_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2060): undefined reference to `GB__AsaxbitB__times_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x20f9): undefined reference to `GB__AsaxbitB__plus_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x215f): undefined reference to `GB__AsaxbitB__max_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x21c5): undefined reference to `GB__AsaxbitB__min_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x222b): undefined reference to `GB__AsaxbitB__any_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2291): undefined reference to `GB__AsaxbitB__times_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x232a): undefined reference to `GB__AsaxbitB__plus_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2390): undefined reference to `GB__AsaxbitB__max_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x23f6): undefined reference to `GB__AsaxbitB__min_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x245c): undefined reference to `GB__AsaxbitB__any_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x24c2): undefined reference to `GB__AsaxbitB__times_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x255b): undefined reference to `GB__AsaxbitB__plus_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x25c1): undefined reference to `GB__AsaxbitB__max_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2627): undefined reference to `GB__AsaxbitB__min_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x268d): undefined reference to `GB__AsaxbitB__any_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x26f3): undefined reference to `GB__AsaxbitB__times_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x278c): undefined reference to `GB__AsaxbitB__plus_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x27f2): undefined reference to `GB__AsaxbitB__max_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2858): undefined reference to `GB__AsaxbitB__min_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x28be): undefined reference to `GB__AsaxbitB__any_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2924): undefined reference to `GB__AsaxbitB__times_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x29bd): undefined reference to `GB__AsaxbitB__plus_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2a23): undefined reference to `GB__AsaxbitB__max_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2a89): undefined reference to `GB__AsaxbitB__min_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2aef): undefined reference to `GB__AsaxbitB__any_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxbit.c.obj):GB_AxB_saxbit.:(.text+0x2b55): undefined reference to `GB__AsaxbitB__times_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x630): undefined reference to `GB__Asaxpy3B__min_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1540): undefined reference to `GB__Asaxpy3B__any_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x159c): undefined reference to `GB__Asaxpy3B__times_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x15f8): undefined reference to `GB__Asaxpy3B__plus_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1654): undefined reference to `GB__Asaxpy3B__max_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x16b0): undefined reference to `GB__Asaxpy3B__plus_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x170c): undefined reference to `GB__Asaxpy3B__max_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1768): undefined reference to `GB__Asaxpy3B__min_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x17c4): undefined reference to `GB__Asaxpy3B__any_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1820): undefined reference to `GB__Asaxpy3B__times_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x187c): undefined reference to `GB__Asaxpy3B__plus_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x18d8): undefined reference to `GB__Asaxpy3B__max_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1934): undefined reference to `GB__Asaxpy3B__min_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1990): undefined reference to `GB__Asaxpy3B__any_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x19ec): undefined reference to `GB__Asaxpy3B__times_secondj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1a48): undefined reference to `GB__Asaxpy3B__plus_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1aa4): undefined reference to `GB__Asaxpy3B__max_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1b00): undefined reference to `GB__Asaxpy3B__min_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1b5c): undefined reference to `GB__Asaxpy3B__any_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1bb8): undefined reference to `GB__Asaxpy3B__times_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1c14): undefined reference to `GB__Asaxpy3B__plus_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1c70): undefined reference to `GB__Asaxpy3B__max_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1ccc): undefined reference to `GB__Asaxpy3B__min_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1d28): undefined reference to `GB__Asaxpy3B__any_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1d84): undefined reference to `GB__Asaxpy3B__times_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1de0): undefined reference to `GB__Asaxpy3B__plus_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1e3c): undefined reference to `GB__Asaxpy3B__max_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1e98): undefined reference to `GB__Asaxpy3B__min_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1ef4): undefined reference to `GB__Asaxpy3B__any_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x1f50): undefined reference to `GB__Asaxpy3B__times_secondj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x2690): undefined reference to `GB__Asaxpy3B__plus_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x26ec): undefined reference to `GB__Asaxpy3B__max_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x2748): undefined reference to `GB__Asaxpy3B__min_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x27a4): undefined reference to `GB__Asaxpy3B__any_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x2800): undefined reference to `GB__Asaxpy3B__times_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x2875): undefined reference to `GB__Asaxpy3B__plus_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x28d1): undefined reference to `GB__Asaxpy3B__max_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x292d): undefined reference to `GB__Asaxpy3B__min_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x2989): undefined reference to `GB__Asaxpy3B__any_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy3.c.obj):GB_AxB_saxpy3.:(.text+0x29e5): undefined reference to `GB__Asaxpy3B__times_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x10d0): undefined reference to `GB__Asaxpy5B__plus_firstj_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x10fa): undefined reference to `GB__Asaxpy5B__min_firstj1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x112a): undefined reference to `GB__Asaxpy5B__min_firsti1_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x1150): undefined reference to `GB__Asaxpy5B__plus_firsti_int64' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x146b): undefined reference to `GB__Asaxpy5B__min_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x1491): undefined reference to `GB__Asaxpy5B__min_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x14b7): undefined reference to `GB__Asaxpy5B__plus_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x14dd): undefined reference to `GB__Asaxpy5B__plus_secondj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x1503): undefined reference to `GB__Asaxpy5B__plus_firsti_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x1529): undefined reference to `GB__Asaxpy5B__min_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x154f): undefined reference to `GB__Asaxpy5B__min_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x1575): undefined reference to `GB__Asaxpy5B__plus_secondj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x159b): undefined reference to `GB__Asaxpy5B__min_firsti1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x15c1): undefined reference to `GB__Asaxpy5B__min_firstj_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x15e7): undefined reference to `GB__Asaxpy5B__plus_firstj1_int32' C:/mingw64/bin/../lib/gcc/x86_64-w64-mingw32/12.2.0/../../../../x86_64-w64-mingw32/bin/ld.exe: CMakeFiles/GraphBLAS.dir/objects.a(GB_AxB_saxpy5.c.obj):GB_AxB_saxpy5.:(.text+0x160d): undefined reference to `GB__Asaxpy5B__plus_firstj_int32'(and we still need to figure out where things moved to in osx) |
No idea. I see all those symbols in the libgraphblas.so on Linux:
|
Is it possible that the compiler is getting confused with my methods for trimming the size of the GraphBLAS binary? In Source/GB_control.h, I have flags to disable types, ops, etc. For example, in GB_control.h I have
Then in each FactoryKernel, I have #if's like this one:
If somehow the GB_TYPE_ENABLED flag is getting set to zero in Windows, then the GB_AxB__plus_firstj_int32.c file becomes empty. Can you edit GB_AxB__plus_firstj_int32.c and add an #error "type is disabled!" if the GB_TYPE_ENABLED token is zero? |
Thanks for the quick response @DrTimothyAldenDavis! We're not just seeing this for Windows; it's for all platforms. When we build wheels (i.e., binaries for Python) in CI for PRs, we set python-suitesparse-graphblas/suitesparse.sh Lines 90 to 114 in 03a9eff
This used to work, but maybe no longer? I'll experiment with |
Okay, after some experimenting with CI, it appears that INT32 and INT64 both must be enabled (i.e., we can't set |
Oh, that's odd. That should work. I'll give it a try on my end. I reduced the size of the binary quite a bit in 9.4.x, by removing functions entirely if there were disabled -- including the calls to them. I must have missed something. |
That was it. I missed one of the "factory" files. See DrTimothyAldenDavis/GraphBLAS@stable...v9.4.branch and also: You need those two #if !defined (...) statements in the GraphBLAS/Source/mxm/factory/GB_AxB_positional_factory.c file. I'll post a v9.4.5 shortly, with this fix, and I'll also add it to the upcoming v10.0.0. |
@eriknw : you now have bugs 23, 29, 36, 42, 45, 46, 48, 49, and now this new one: 59, in the GraphBLAS/Doc/Changelog :-) . |
Wow, nice! And a big thanks to you for fixing all of those (typically extremely promptly). |
The macos-12 test fail is because GitHub stopped offering that version. I updated our workflows to macos-13, a git pull from main should fix it. https://github.com/GraphBLAS/python-suitesparse-graphblas/pull/137/files |
Does the fix for the draft v9.4.5 work, to fix the problem where symbols are missing? If so, I'd like to post the stable v9.4.5. |
I'll try to take a look tomorrow or this weekend. |
Try out 9.4.5.beta2. I found a clang compiler bug and added a workaround, for AppleClang, but I also need it for the MS clang-cl compiler as well. That bug probably doesn't affect you but it would be better to try the beta2 version. |
We do use AppleClang on macOS, so this is helpful. The wheels are built with the "native" compilers for each platform. GCC on Linux, AppleClang on macOS, MSVC on Windows. This is an explicit choice by the cibuildwheel folks, and they don't recommend overriding. |
@DrTimothyAldenDavis 9.4.5.beta2 appears to work for us! I reverted the changes we made to GB_control.h, so things work when we disable building for all types. |
Great! I will post a stable v9.4.5 shortly. |
GraphBLAS 9.4.5.beta2 and the stable 9.4.5 are identical, except that somehow I forgot to include the pdf user guide in the Doc/ folder. |
Thanks everyone for helping and, generally, sharing the burden of maintenance! Greatly appreciated. Merging and releasing 🚀 |
No description provided.