We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86a78c4 commit 742f6acCopy full SHA for 742f6ac
DirectProgramming/C++/CompilerInfrastructure/Intrinsics/Makefile
@@ -1,4 +1,4 @@
1
-CC = icpx
+CC = icc
2
EXECS=intrin_dot_sample.exe intrin_double_sample.exe intrin_ftz_sample.exe
3
DBG_EXECS=intrin_dot_sample_dbg.exe intrin_double_sample_dbg.exe intrin_ftz_sample_dbg.exe
4
@@ -31,10 +31,10 @@ intrin_ftz_sample_dbg.exe: intrin_ftz_sample_dbg.o
31
$(CC) -O0 -g $^ -o $@
32
33
%.o: src/%.cpp
34
- $(CC) -O2 -msse3 -c -o $@ $<
+ $(CC) -O2 -c -o $@ $<
35
36
%_dbg.o: src/%.cpp
37
- $(CC) -O0 -msse3 -g -c -o $@ $<
+ $(CC) -O0 -g -c -o $@ $<
38
39
clean:
40
/bin/rm -f core.* *.o *.exe
0 commit comments