We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a96908 commit 2a9981aCopy full SHA for 2a9981a
test/Makefile
@@ -271,6 +271,11 @@ endif
271
ifeq ($(F_COMPILER), NAG)
272
CEXTRALIB = -lgomp
273
endif
274
+ifeq ($(F_COMPILER), IBM)
275
+ifeq ($(C_COMPILER), GCC)
276
+CEXTRALIB += -lgomp
277
+endif
278
279
280
281
ifeq ($(BUILD_SINGLE),1)
@@ -326,7 +331,7 @@ endif
326
331
327
332
ifeq ($(BUILD_BFLOAT16),1)
328
333
test_sbgemm : compare_sgemm_sbgemm.c ../$(LIBNAME)
329
- $(CC) $(FLDFLAGS) -o test_sbgemm compare_sgemm_sbgemm.c ../$(LIBNAME) $(EXTRALIB) $(CEXTRALIB)
334
+ $(CC) $(CFLAGS) -o test_sbgemm compare_sgemm_sbgemm.c ../$(LIBNAME) $(EXTRALIB) $(CEXTRALIB)
330
335
336
337
ifeq ($(BUILD_COMPLEX),1)
0 commit comments