Skip to content

Commit ee8ee35

Browse files
authored
Updated Makefile.win to resolve Windows compilation errors (oneapi-src#1460)
1 parent 1aa9741 commit ee8ee35

File tree

1 file changed

+3
-3
lines changed
  • DirectProgramming/C++SYCL/DenseLinearAlgebra/matrix_mul

1 file changed

+3
-3
lines changed

DirectProgramming/C++SYCL/DenseLinearAlgebra/matrix_mul/Makefile.win

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
SYCL_CXX = icx-cl
2-
SYCL_CXXFLAGS = /Zi /EHsc
3-
SYCL_LDFLAGS =
2+
SYCL_CXXFLAGS = -fsycl /Zi /EHsc
3+
SYCL_LDFLAGS =
44
SYCL_EXE_NAME = matrix_mul_sycl.exe
55
SYCL_SOURCES = src/matrix_mul_sycl.cpp
66

@@ -17,5 +17,5 @@ run:
1717
run_sycl:
1818
$(SYCL_EXE_NAME)
1919

20-
clean:
20+
clean:
2121
del -rf $(SYCL_EXE_NAME) *.pdb

0 commit comments

Comments
 (0)