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

Upgrade to 9.4.5 -- Add IndexBinaryOp #136

Merged
merged 10 commits into from
Feb 24, 2025
Merged

Conversation

jim22k
Copy link
Member

@jim22k jim22k commented Dec 18, 2024

No description provided.

@eriknw eriknw closed this Dec 18, 2024
@eriknw eriknw reopened this Dec 18, 2024
@alugowski
Copy link
Collaborator

Need to update https://github.com/GraphBLAS/python-suitesparse-graphblas/blob/main/GB_VERSION.txt

@eriknw
Copy link
Member

eriknw commented Dec 19, 2024

Tests are passing (🎉), but wheel builds are failing. @alugowski do you have a moment to take a look?

@alugowski
Copy link
Collaborator

Tests use the library built by conda, wheels build it ourselves. Looks like there are differences.

Linux error:

  ../venv/lib/python3.9/site-packages/suitesparse_graphblas/__init__.py:7: in <module>
      from ._graphblas import ffi, lib
  E   ImportError: /tmp/tmp.kWfsLrL72N/venv/lib/python3.9/site-packages/suitesparse_graphblas/../suitesparse_graphblas.libs/libgraphblas-c7173593.so.9.4.2: undefined symbol: GB__Adot2B__plus_firstj_int32

Seems related to this point in the release notes for upstream 9.4.2:

  • removed Factory kernels for: types int8 and uint8, and semirings:
    max_min, max_plus, max_times, min_max, min_times, plus_min, plus_max,
    non-Boolean land/lor/lxor/lxnor, and integer times_first/second,
    to reduce size of compiled library. JIT kernels will be used instead
    for these types and semirings.

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.

@alugowski
Copy link
Collaborator

On macos:

    gcc -Wno-unused-result -Wsign-compare -Wunreachable-code -fno-common -dynamic -DNDEBUG -g -fwrapv -O3 -Wall -g -arch arm64 -I/private/var/folders/95/0ydz4d79163427j3k5crp3fh0000gn/T/cibw-run-1yzrg22y/cp39-macosx_arm64/build/venv/include -I/private/var/folders/95/0ydz4d79163427j3k5crp3fh0000gn/T/cibw-run-1yzrg22y/cp39-macosx_arm64/build/venv/include/suitesparse -I/private/var/folders/95/0ydz4d79163427j3k5crp3fh0000gn/T/cibw-run-1yzrg22y/cp39-macosx_arm64/build/venv/include -I/Library/Frameworks/Python.framework/Versions/3.9/include/python3.9 -c build/temp.macosx-11.0-arm64-cpython-39/suitesparse_graphblas._graphblas.c -o build/temp.macosx-11.0-arm64-cpython-39/build/temp.macosx-11.0-arm64-cpython-39/suitesparse_graphblas._graphblas.o
    build/temp.macosx-11.0-arm64-cpython-39/suitesparse_graphblas._graphblas.c:574:10: fatal error: 'GraphBLAS.h' file not found
    #include "GraphBLAS.h"
             ^~~~~~~~~~~~~
    1 error generated.

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:

@alugowski
Copy link
Collaborator

Windows failure appears to also be the undefined symbols to the no-longer-included kernels.

@DrTimothyAldenDavis
Copy link
Member

I didn't move the location of GraphBLAS.h. Also, the library still has GB__Adot2B__plus_firstj_int32:

$ nm -gD libgraphblas.so.9.4.2 | grep Adot2B__plus_firstj_
0000000001752b00 T GB__Adot2B__plus_firstj_int32
0000000001752b70 T GB__Adot2B__plus_firstj_int64

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:

 $ nm -gD libgraphblas.so.9.4.2 | grep _uint8
0000000000434140 T GB_bitclr_uint8
0000000000433f30 T GB_bitget_uint8
0000000000434030 T GB_bitset_uint8
00000000004341d0 T GB_bitshift_uint8
0000000000344880 T GB__cast_bool_uint8_t
0000000000345980 T GB__cast_double_uint8_t
00000000003457e0 T GB__cast_float_uint8_t
0000000000345b20 T GB__cast_GxB_FC32_t_uint8_t
0000000000345ce0 T GB__cast_GxB_FC64_t_uint8_t
0000000000344b80 T GB__cast_int16_t_uint8_t
0000000000344d50 T GB__cast_int32_t_uint8_t
0000000000344f20 T GB__cast_int64_t_uint8_t
00000000003449b0 T GB__cast_int8_t_uint8_t
0000000000344710 T GB_cast_to_uint8_t
0000000000345260 T GB__cast_uint16_t_uint8_t
00000000003453f0 T GB__cast_uint32_t_uint8_t
0000000000345580 T GB__cast_uint64_t_uint8_t
00000000003450a0 T GB__cast_uint8_t_bool
0000000000345170 T GB__cast_uint8_t_double
0000000000345130 T GB__cast_uint8_t_float
00000000003451a0 T GB__cast_uint8_t_GxB_FC32_t
00000000003451e0 T GB__cast_uint8_t_GxB_FC64_t
00000000003450c0 T GB__cast_uint8_t_int16_t
00000000003450d0 T GB__cast_uint8_t_int32_t
00000000003450e0 T GB__cast_uint8_t_int64_t
00000000003450b0 T GB__cast_uint8_t_int8_t
0000000000345100 T GB__cast_uint8_t_uint16_t
0000000000345110 T GB__cast_uint8_t_uint32_t
0000000000345120 T GB__cast_uint8_t_uint64_t
00000000003450f0 T GB__cast_uint8_t_uint8_t
0000000000434500 T GB_idiv_uint8
0000000000435850 T GB_pow_uint8
0000000002f25ef0 T GB__sel_bitmap__eq_thunk_uint8
0000000002f2dc00 T GB__sel_bitmap__ge_thunk_uint8
0000000002f358b0 T GB__sel_bitmap__gt_thunk_uint8
0000000002f3d4c0 T GB__sel_bitmap__le_thunk_uint8
0000000002f45130 T GB__sel_bitmap__lt_thunk_uint8
0000000002f4e990 T GB__sel_bitmap__ne_thunk_uint8
0000000002f25d10 T GB__sel_phase1__eq_thunk_uint8
0000000002f2da10 T GB__sel_phase1__ge_thunk_uint8
0000000002f356c0 T GB__sel_phase1__gt_thunk_uint8
0000000002f3d2d0 T GB__sel_phase1__le_thunk_uint8
0000000002f44f40 T GB__sel_phase1__lt_thunk_uint8
0000000002f4e7a0 T GB__sel_phase1__ne_thunk_uint8
0000000002f25e10 T GB__sel_phase2__eq_thunk_uint8
0000000002f2db10 T GB__sel_phase2__ge_thunk_uint8
0000000002f357c0 T GB__sel_phase2__gt_thunk_uint8
0000000002f3d3d0 T GB__sel_phase2__le_thunk_uint8
0000000002f45040 T GB__sel_phase2__lt_thunk_uint8
0000000002f4e8a0 T GB__sel_phase2__ne_thunk_uint8
0000000002f51400 T GB__sel_phase2__nonzombie_uint8
0000000002f9af90 T GB__uop_apply__identity_bool_uint8
0000000002fa12a0 T GB__uop_apply__identity_fc32_uint8
0000000002fa7940 T GB__uop_apply__identity_fc64_uint8
0000000002fad910 T GB__uop_apply__identity_fp32_uint8
0000000002fb38d0 T GB__uop_apply__identity_fp64_uint8
0000000002fb3a60 T GB__uop_apply__identity_int16_uint8
0000000002fba690 T GB__uop_apply__identity_int32_uint8
0000000002fc0d20 T GB__uop_apply__identity_int64_uint8
0000000002fc0eb0 T GB__uop_apply__identity_int8_uint8
0000000002fc1040 T GB__uop_apply__identity_uint16_uint8
0000000002fc7960 T GB__uop_apply__identity_uint32_uint8
0000000002fce240 T GB__uop_apply__identity_uint64_uint8
0000000002fce260 T GB__uop_apply__identity_uint8_bool
0000000002fce280 T GB__uop_apply__identity_uint8_fc32
0000000002fce2a0 T GB__uop_apply__identity_uint8_fc64
0000000002fce2c0 T GB__uop_apply__identity_uint8_fp32
0000000002fce2e0 T GB__uop_apply__identity_uint8_fp64
0000000002fce300 T GB__uop_apply__identity_uint8_int16
0000000002fce320 T GB__uop_apply__identity_uint8_int32
0000000002fce340 T GB__uop_apply__identity_uint8_int64
0000000002fce360 T GB__uop_apply__identity_uint8_int8
0000000002fce380 T GB__uop_apply__identity_uint8_uint16
0000000002fce3a0 T GB__uop_apply__identity_uint8_uint32
0000000002fce3c0 T GB__uop_apply__identity_uint8_uint64
0000000002f9afa0 T GB__uop_tran__identity_bool_uint8
0000000002fa12b0 T GB__uop_tran__identity_fc32_uint8
0000000002fa7950 T GB__uop_tran__identity_fc64_uint8
0000000002fad920 T GB__uop_tran__identity_fp32_uint8
0000000002fb38e0 T GB__uop_tran__identity_fp64_uint8
0000000002fb3a70 T GB__uop_tran__identity_int16_uint8
0000000002fba6a0 T GB__uop_tran__identity_int32_uint8
0000000002fc0d30 T GB__uop_tran__identity_int64_uint8
0000000002fc0ec0 T GB__uop_tran__identity_int8_uint8
0000000002fc1050 T GB__uop_tran__identity_uint16_uint8
0000000002fc7970 T GB__uop_tran__identity_uint32_uint8
0000000002fce250 T GB__uop_tran__identity_uint64_uint8
0000000002fce270 T GB__uop_tran__identity_uint8_bool
0000000002fce290 T GB__uop_tran__identity_uint8_fc32
0000000002fce2b0 T GB__uop_tran__identity_uint8_fc64
0000000002fce2d0 T GB__uop_tran__identity_uint8_fp32
0000000002fce2f0 T GB__uop_tran__identity_uint8_fp64
0000000002fce310 T GB__uop_tran__identity_uint8_int16
0000000002fce330 T GB__uop_tran__identity_uint8_int32
0000000002fce350 T GB__uop_tran__identity_uint8_int64
0000000002fce370 T GB__uop_tran__identity_uint8_int8
0000000002fce390 T GB__uop_tran__identity_uint8_uint16
0000000002fce3b0 T GB__uop_tran__identity_uint8_uint32
0000000002fce3d0 T GB__uop_tran__identity_uint8_uint64
0000000002fce3e0 T GB__uop_tran__identity_uint8_uint8

@DrTimothyAldenDavis
Copy link
Member

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.

@DrTimothyAldenDavis
Copy link
Member

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:
DrTimothyAldenDavis/GraphBLAS@196a2aa

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).

@alugowski
Copy link
Collaborator

@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 .c files:

  C:/mingw64/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'

@alugowski
Copy link
Collaborator

These workflows produce output in sections. Click the little arrow to expand the section and you can then see the full log with the error messages.

This is a blessing because each step produces a mountain of output (see line numbers).

image

@eriknw eriknw changed the title Upgrade to 9.4.2 -- Add IndexBinaryOp Upgrade to 9.4.4 -- Add IndexBinaryOp Feb 17, 2025
@eriknw
Copy link
Member

eriknw commented Feb 17, 2025

@DrTimothyAldenDavis we're seeing a lot of undefined symbols when using the SuiteSparse:GraphBLAS 9.4.4 such as

libgraphblas-bdc7c560.so.9.4.4: undefined symbol: GB__Adot2B__plus_firstj_int32

Any idea what's going on?

From Windows build C:/mingw64/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)

@DrTimothyAldenDavis
Copy link
Member

No idea. I see all those symbols in the libgraphblas.so on Linux:

 $ nm -gD libgraphblas.so.9.4.4 | grep plus_firstj_
0000000001752840 T GB__Adot2B__plus_firstj_int32
00000000017528b0 T GB__Adot2B__plus_firstj_int64
0000000001752850 T GB__Adot3B__plus_firstj_int32
...

@DrTimothyAldenDavis
Copy link
Member

DrTimothyAldenDavis commented Feb 17, 2025

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

https://github.com/DrTimothyAldenDavis/GraphBLAS/blob/31a1c6bdc00b67fe863712e89283618cfad8ac07/Source/GB_control.h#L84C1-L105C30

// uncomment any of these lines to disable the types
//------------------------------------------------------------------------------


// These disable all semirings with the corresponding type of x,y for the
// multiplicative operator, for GrB_mxm, GrB_vxm, and GrB_mxv.


// They also disable the hard-coded functions for GrB_eWiseAdd, GrB_eWiseMult,
// GrB_reduce, GrB_*_build, GrB_apply, and GrB_transpose for this type.


// #define GxB_NO_BOOL      1
// #define GxB_NO_FP32      1
// #define GxB_NO_FP64      1
// #define GxB_NO_FC32      1
// #define GxB_NO_FC64      1
   #define GxB_NO_INT16     1
// #define GxB_NO_INT32     1
// #define GxB_NO_INT64     1
   #define GxB_NO_INT8      1
   #define GxB_NO_UINT16    1
// #define GxB_NO_UINT32    1
// #define GxB_NO_UINT64    1
   #define GxB_NO_UINT8     1

Then in each FactoryKernel, I have #if's like this one:

https://github.com/DrTimothyAldenDavis/GraphBLAS/blob/31a1c6bdc00b67fe863712e89283618cfad8ac07/FactoryKernels/GB_AxB__plus_firstj_int32.c#L10-L17

#include "GB_control.h"
#if defined (GxB_NO_INT32)
#define GB_TYPE_ENABLED 0
#else
#define GB_TYPE_ENABLED 1
#endif


#if GB_TYPE_ENABLED
...

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?

@eriknw
Copy link
Member

eriknw commented Feb 18, 2025

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 SUITESPARSE_FASTEST_BUILD to disable nearly everything to make the job very fast. See:

if [ -n "${SUITESPARSE_FASTEST_BUILD}" ]; then
echo "suitesparse.sh: Fastest build requested."
# Fastest build possible. For use in development and automated tests that do not depend on performance.
echo "#define GxB_NO_BOOL 1" >> ../Source/GB_control.h
echo "#define GxB_NO_FP32 1" >> ../Source/GB_control.h
echo "#define GxB_NO_FP64 1" >> ../Source/GB_control.h
echo "#define GxB_NO_FC32 1" >> ../Source/GB_control.h
echo "#define GxB_NO_FC64 1" >> ../Source/GB_control.h
echo "#define GxB_NO_INT16 1" >> ../Source/GB_control.h
echo "#define GxB_NO_INT32 1" >> ../Source/GB_control.h
echo "#define GxB_NO_INT64 1" >> ../Source/GB_control.h
echo "#define GxB_NO_INT8 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT16 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT32 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT64 1" >> ../Source/GB_control.h
echo "#define GxB_NO_UINT8 1" >> ../Source/GB_control.h
# Setting COMPACT probably makes setting config in GB_control.h above unnecessary
cmake_params+=(-DCOMPACT=1)
# Also no JIT for the fastest possible build
cmake_params+=(-DNJIT=1)
# Disable all Source/Generated2 kernels. For workflow development only.
cmake_params+=(-DCMAKE_CUDA_DEV=1)
fi

This used to work, but maybe no longer? I'll experiment with GB_control.h to see what happens.

@eriknw
Copy link
Member

eriknw commented Feb 18, 2025

Okay, after some experimenting with CI, it appears that INT32 and INT64 both must be enabled (i.e., we can't set #define GxB_NO_INT32). I haven't investigated this locally yet. @DrTimothyAldenDavis, any ideas? Did anything change between 9.3 and 9.4 that might explain this?

@DrTimothyAldenDavis
Copy link
Member

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.

@DrTimothyAldenDavis
Copy link
Member

That was it. I missed one of the "factory" files. See DrTimothyAldenDavis/GraphBLAS@stable...v9.4.branch

and also:
DrTimothyAldenDavis/GraphBLAS@8c8e9fc

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.

@DrTimothyAldenDavis
Copy link
Member

@eriknw : you now have bugs 23, 29, 36, 42, 45, 46, 48, 49, and now this new one: 59, in the GraphBLAS/Doc/Changelog :-) .

@eriknw
Copy link
Member

eriknw commented Feb 19, 2025

@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).

@alugowski
Copy link
Collaborator

alugowski commented Feb 20, 2025

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

@DrTimothyAldenDavis
Copy link
Member

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.

@eriknw
Copy link
Member

eriknw commented Feb 21, 2025

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.

@DrTimothyAldenDavis
Copy link
Member

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.

@alugowski
Copy link
Collaborator

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.

@eriknw
Copy link
Member

eriknw commented Feb 23, 2025

@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.

@DrTimothyAldenDavis
Copy link
Member

Great! I will post a stable v9.4.5 shortly.

@eriknw eriknw changed the title Upgrade to 9.4.4 -- Add IndexBinaryOp Upgrade to 9.4.5 -- Add IndexBinaryOp Feb 24, 2025
@DrTimothyAldenDavis
Copy link
Member

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.

@eriknw
Copy link
Member

eriknw commented Feb 24, 2025

Thanks everyone for helping and, generally, sharing the burden of maintenance! Greatly appreciated. Merging and releasing 🚀

@eriknw eriknw merged commit 2e6920e into GraphBLAS:main Feb 24, 2025
24 checks passed
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

Successfully merging this pull request may close these issues.

4 participants