![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/lib/llvm-10/cmake/ |
Upload File : |
# Adds version control information to the variable VERS. For # determining the Version Control System used (if any) it inspects the # existence of certain subdirectories under SOURCE_DIR (if provided as an # extra argument, otherwise uses CMAKE_CURRENT_SOURCE_DIR). function(get_source_info path revision repository) find_package(Git) if(GIT_FOUND) execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --git-dir WORKING_DIRECTORY ${path} RESULT_VARIABLE git_result OUTPUT_VARIABLE git_output ERROR_QUIET) if(git_result EQUAL 0) string(STRIP "${git_output}" git_output) get_filename_component(git_dir ${git_output} ABSOLUTE BASE_DIR ${path}) execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse HEAD WORKING_DIRECTORY ${path} RESULT_VARIABLE git_result OUTPUT_VARIABLE git_output) if(git_result EQUAL 0) string(STRIP "${git_output}" git_output) set(${revision} ${git_output} PARENT_SCOPE) endif() execute_process(COMMAND ${GIT_EXECUTABLE} rev-parse --abbrev-ref --symbolic-full-name @{upstream} WORKING_DIRECTORY ${path} RESULT_VARIABLE git_result OUTPUT_VARIABLE git_output ERROR_QUIET) if(git_result EQUAL 0) string(REPLACE "/" ";" branch ${git_output}) list(GET branch 0 remote) else() set(remote "origin") endif() execute_process(COMMAND ${GIT_EXECUTABLE} remote get-url ${remote} WORKING_DIRECTORY ${path} RESULT_VARIABLE git_result OUTPUT_VARIABLE git_output ERROR_QUIET) if(git_result EQUAL 0) string(STRIP "${git_output}" git_output) set(${repository} ${git_output} PARENT_SCOPE) else() set(${repository} ${path} PARENT_SCOPE) endif() endif() endif() endfunction()