Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions external/build-llvm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ cmake_arguments_for_slang=(
"-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded$<$<CONFIG:Debug>:Debug>"
"-DLLVM_USE_CRT_RELEASE=MT"
"-DLLVM_USE_CRT_DEBUG=MTd"
# Allow building with newer compilers
-DCMAKE_CXX_FLAGS="-include cstdint"
Comment on lines +138 to +139
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shouldn't we add this line somewhere in the source code rather than in cmake?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jkwak-work you mean, in the LLVM source code?

)
build_dir=$source_dir/build
mkdir -p "$build_dir"
Expand Down
Loading