clang++ helloworld.cpp -I/usr/include/ -lsfml-graphics -lsfml-window -lsfml-system. But when I try to cross-compile it for Windows I get an error:
clang++ helloworld.cpp -I/usr/include/ -lsfml-graphics -lsfml-window -lsfml-system -target x86_64-win32Any ideas how to fix?
helloworld.cpp:1:10: fatal error: 'ostream' file not found
#include <ostream>
^
1 error generated.