Various Errors on fresh install #176
-
|
I just installed Perry on Windows 11 and got the following errors trying to build the hello.ts example. The examples on |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
Hi @clibu, thanks for reporting this — and sorry about the docs. On the On the Then open a new terminal (so the updated If you prefer another package manager, You can verify the install with What''s changing in Perry itself (9e5196e):
Separately I''ll also look at declaring Let me know if the install works for you. |
Beta Was this translation helpful? Give feedback.
Good progress! You''re now past the LLVM step. The next one is MSVC''s linker + Windows SDK — Perry on Windows needs LLVM''s
clangto produce the object file, then hands it to MSVC''slink.exeto produce the final.exe, andlink.exelinks against system libraries (kernel32.lib,msvcrt.lib, etc.) from the Windows SDK.Your existing Visual Studio install probably just doesn''t have the C++ workload enabled. Two ways to fix, pick whichever is easier:
Option A — add the C++ workload to your existing VS install (fastest)