Skip to content

Commit ade7ca4

Browse files
committed
Add more output
1 parent da35ab0 commit ade7ca4

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

cmake/yup_python.cmake

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,13 @@ function (yup_prepare_python_stdlib target_name python_tools_path output_variabl
3434
set (python_standard_library "${CMAKE_CURRENT_BINARY_DIR}/python${Python_VERSION_MAJOR}${Python_VERSION_MINOR}.zip")
3535

3636
_yup_message (STATUS "Executing python stdlib archive generator tool")
37+
_yup_message (STATUS " * CMAKE_CURRENT_BINARY_DIR: ${CMAKE_CURRENT_BINARY_DIR}")
38+
_yup_message (STATUS " * Python_EXECUTABLE: ${Python_EXECUTABLE}")
39+
_yup_message (STATUS " * Python_LIBRARY_DIRS: ${Python_LIBRARY_DIRS}")
40+
_yup_message (STATUS " * Python_VERSION_MAJOR: ${Python_VERSION_MAJOR}")
41+
_yup_message (STATUS " * Python_VERSION_MINOR: ${Python_VERSION_MINOR}")
42+
_yup_message (STATUS " * python_tools_path: ${python_tools_path}")
43+
_yup_message (STATUS " * ignored_library_patterns: ${ignored_library_patterns}")
3744

3845
execute_process (
3946
COMMAND

python/tools/ArchivePythonStdlib.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ def make_archive(file, directory):
3636

3737

3838
if __name__ == "__main__":
39+
print(f"starting python standard lib archiving tool...")
40+
3941
parser = ArgumentParser()
4042
parser.add_argument("-l", "--lib-folder", type=Path, help="Path to the lib folder.")
4143
parser.add_argument("-o", "--output-folder", type=Path, help="Path to the output folder.")

0 commit comments

Comments
 (0)