Sample Commands and Code Snippets:
Follow the same steps as in Linux to use AOCL-LibM on Windows but with Windows-specific compilation commands.
> set PATH=%PATH%;C:\path\to\AOCL-LibM\lib
> clang -Wall -std=c99 myprogram.c -o myprogram.exe -L"C:\path\to\AOCL-LibM\lib" -lalm
For Visual Studio:
> cl myprogram.c /I"C:\path\to\AOCL-LibM\include" /link "C:\path\to\AOCL-LibM\lib\libalm.lib"