-
Notifications
You must be signed in to change notification settings - Fork 187
Conversation
Windows info will get updated later.
docs/setup/building_and_testing.md
Outdated
@@ -109,11 +111,11 @@ cd ${LIBCUDACXX_ROOT} | |||
mkdir -p build | |||
cd build | |||
cmake .. \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can drop mkdir, cd, and go with
cmake -S . -B build ....
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can't comment on the line, but is apt-get -y install llvm
needed anymore?
Yep, as stated it's still need for cmake modules :)
re: #175 (comment) should we include |
variable "LIBCXX_LIT_SITE_CONFIG" in |
That script should be correct. There are two separate lit configs created depending on which tests have been enabled.
The documentation will need to be updated to reflect that as well. |
Hi Wesley,
========================= By the way, I saw the same build command for Windows part. Is it expected? |
Sorry, I should clarify: Lit consumes these two variables, not the ones I listed in the comments. The environment vars are actually assigned later in the test script. I would like to update The Windows build commands are simplified in the same way though we don't support running libcxx tests yet. |
This may not be required at this point actually. Part of the earlier build changes were to remove our reliance on them. However, I won't be removing the instruction as I haven't tested on a clean system yet. On Windows cloning llvm-project is no longer required at least. |
This includes changes reflecting that LLVM is no longer a dependency on Windows builds and how to build libcudacxx tests.