Skip to content

Commit 0fc3d3f

Browse files
committed
Merge pull request #170 from hughperkins/fix-buggette-in-pull-163
Fix catch-22 in build order, following pull-163, where init.c compile…
2 parents 27ab572 + 3681c78 commit 0fc3d3f

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@
2323

2424
# vim temp files
2525
.*.swp
26+
27+
src/build/
28+
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#pragma once
2+
3+
#ifdef __cplusplus
4+
#extern "C" {
5+
#endif
6+
void initAutoGemmClKernels(void);
7+
#ifdef __cplusplus
8+
}
9+
#endif
10+

src/library/blas/init.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#include <stdlib.h>
2727
#include <stdio.h>
2828
#ifdef BUILDING_CLBLAS
29-
#include "AutoGemmIncludes/AutoGemmClKernels.h"
29+
#include "AutoGemmTeardown.h"
3030
#endif
3131

3232
clblasStatus

0 commit comments

Comments
 (0)