Ericsson / codechecker

CodeChecker is an analyzer tooling, defect database and viewer extension for static and dynamic analyzer tools.
https://codechecker.readthedocs.io
Apache License 2.0
2.27k stars 381 forks source link

Installation from source troubles #3857

Closed dilyanpalauzov closed 1 year ago

dilyanpalauzov commented 1 year ago

I want to install CodeChecker at commit eac25bc8 (current master) on Window—WSL2—Fedora with python 3.11.2. I have installed node16 and have set «export NODE_OPTIONS=--openssl-legacy-provider».

I create and enter a virtualenv

$ virtualenv cc
created virtual environment CPython3.11.2.final.0-64 in 244ms
  creator CPython3Posix(dest=/home/me/cc, clear=False, no_vcs_ignore=False, global=False)
  seeder FromAppData(download=False, pip=bundle, setuptools=bundle, wheel=bundle, via=copy, app_data_dir=/home/me/.local/share/virtualenv)
    added seed packages: pip==23.0.1, setuptools==67.4.0, wheel==0.38.4
  activators BashActivator,CShellActivator,FishActivator,NushellActivator,PowerShellActivator,PythonActivator
$ . cc/bin/activate

(cc) $ pip install -U setuptools
Requirement already satisfied: setuptools in ./cc/lib/python3.11/site-packages (67.4.0)
Collecting setuptools
  Using cached setuptools-67.6.0-py3-none-any.whl (1.1 MB)
Installing collected packages: setuptools
  Attempting uninstall: setuptools
    Found existing installation: setuptools 67.4.0
    Uninstalling setuptools-67.4.0:
      Successfully uninstalled setuptools-67.4.0
Successfully installed setuptools-67.6.0

(cc) $ cd /git/codechecker/
(cc) [/git/codechecker master =]$ make package
(cc) [/git/codechecker master =]$ make package |&tee -a inst

https://github.com/Ericsson/codechecker/ says «make package» shall be sufficient for the installation, but it does not install codechecker under virtenv-bin. However «pip list» does show

(cc) [~/cc/bin]$ pip list
Package                Version
---------------------- -------
alembic                1.5.5
codechecker-api        6.51.0
codechecker-api-shared 6.51.0
gitdb                  4.0.10
GitPython              3.1.11
lxml                   4.9.1
Mako                   1.2.4
MarkupSafe             2.1.2
mypy-extensions        0.4.3
pip                    23.0.1
portalocker            2.2.1
psutil                 5.8.0
python-dateutil        2.8.2
python-editor          1.0.4
PyYAML                 5.4.1
setuptools             67.4.0
six                    1.16.0
smmap                  5.0.0
SQLAlchemy             1.3.23
thrift                 0.13.0
wheel                  0.38.4

Then I call «python setup.py install |& tee -a inst2»

Calling now «python setup.py install» produces:

Below is the content of «inst», followed by the content of inst2.

The problem report is, that code checker is not installed in virtualenv-bin.

---- inst ----

mkdir -p /git/codechecker/build && \
mkdir -p /git/codechecker/build/CodeChecker/bin && \
mkdir -p /git/codechecker/build/CodeChecker/lib/python3
if [ -d "/git/codechecker/.git" ]; then git config --local commit.template .gitmessage; fi
cp -p scripts/gerrit_changed_files_to_skipfile.py /git/codechecker/build/CodeChecker/bin
BUILD_DIR=/git/codechecker/build BUILD_LOGGER_64_BIT_ONLY=NO make -C /git/codechecker/analyzer package_analyzer
make[1]: Entering directory '/git/codechecker/analyzer'
mkdir -p /git/codechecker/build && \
mkdir -p /git/codechecker/build/CodeChecker/bin && \
mkdir -p /git/codechecker/build/CodeChecker/lib/python3
make -C /git/codechecker/analyzer/../tools/tu_collector build
make[2]: Entering directory '/git/codechecker/tools/tu_collector'
python3 setup.py build --build-purelib build/tu_collector
running build
running build_py
creating build
creating build/tu_collector
creating build/tu_collector/tu_collector
copying tu_collector/__init__.py -> build/tu_collector/tu_collector
copying tu_collector/tu_collector.py -> build/tu_collector/tu_collector
running egg_info
creating tu_collector.egg-info
writing tu_collector.egg-info/PKG-INFO
writing dependency_links to tu_collector.egg-info/dependency_links.txt
writing entry points to tu_collector.egg-info/entry_points.txt
writing top-level names to tu_collector.egg-info/top_level.txt
writing manifest file 'tu_collector.egg-info/SOURCES.txt'
reading manifest file 'tu_collector.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.md'
adding license file 'LICENSE.txt'
writing manifest file 'tu_collector.egg-info/SOURCES.txt'
make[2]: Leaving directory '/git/codechecker/tools/tu_collector'
# Copy tu_collector files.
cp -rp /git/codechecker/analyzer/../tools/tu_collector/build/tu_collector/tu_collector /git/codechecker/build/CodeChecker/lib/python3 && \
chmod u+x /git/codechecker/build/CodeChecker/lib/python3/tu_collector/tu_collector.py && \
cd /git/codechecker/build/CodeChecker/bin && \
ln -sf ../lib/python3/tu_collector/tu_collector.py tu_collector
make -C /git/codechecker/analyzer/../analyzer/tools/merge_clang_extdef_mappings build
make[2]: Entering directory '/git/codechecker/analyzer/tools/merge_clang_extdef_mappings'
python3 setup.py build --build-purelib /git/codechecker/analyzer/tools/merge_clang_extdef_mappings/build/merge_clang_extdef_mappings
running build
running build_py
creating /git/codechecker/analyzer/tools/merge_clang_extdef_mappings/build
creating /git/codechecker/analyzer/tools/merge_clang_extdef_mappings/build/merge_clang_extdef_mappings
creating /git/codechecker/analyzer/tools/merge_clang_extdef_mappings/build/merge_clang_extdef_mappings/codechecker_merge_clang_extdef_mappings
copying codechecker_merge_clang_extdef_mappings/cli.py -> /git/codechecker/analyzer/tools/merge_clang_extdef_mappings/build/merge_clang_extdef_mappings/codechecker_merge_clang_extdef_mappings
copying codechecker_merge_clang_extdef_mappings/__init__.py -> /git/codechecker/analyzer/tools/merge_clang_extdef_mappings/build/merge_clang_extdef_mappings/codechecker_merge_clang_extdef_mappings
copying codechecker_merge_clang_extdef_mappings/merge_clang_extdef_mappings.py -> /git/codechecker/analyzer/tools/merge_clang_extdef_mappings/build/merge_clang_extdef_mappings/codechecker_merge_clang_extdef_mappings
running egg_info
creating merge_clang_extdef_mappings.egg-info
writing merge_clang_extdef_mappings.egg-info/PKG-INFO
writing dependency_links to merge_clang_extdef_mappings.egg-info/dependency_links.txt
writing entry points to merge_clang_extdef_mappings.egg-info/entry_points.txt
writing top-level names to merge_clang_extdef_mappings.egg-info/top_level.txt
writing manifest file 'merge_clang_extdef_mappings.egg-info/SOURCES.txt'
reading manifest file 'merge_clang_extdef_mappings.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE.txt'
writing manifest file 'merge_clang_extdef_mappings.egg-info/SOURCES.txt'
make[2]: Leaving directory '/git/codechecker/analyzer/tools/merge_clang_extdef_mappings'
# Copy files.
cp -r tools/merge_clang_extdef_mappings/build/merge_clang_extdef_mappings/codechecker_merge_clang_extdef_mappings /git/codechecker/build/CodeChecker/lib/python3 && \
chmod u+x /git/codechecker/build/CodeChecker/lib/python3/codechecker_merge_clang_extdef_mappings/cli.py && \
cd /git/codechecker/build/CodeChecker/bin && \
ln -sf ../lib/python3/codechecker_merge_clang_extdef_mappings/cli.py merge-clang-extdef-mappings
make -C /git/codechecker/analyzer/../tools/report-converter build
make[2]: Entering directory '/git/codechecker/tools/report-converter'
mkdir -p /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor
mkdir -p /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.js ] && : || \
curl -sSfLk --get https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.30.0/codemirror.min.js \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.js \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.js
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.css ] && : || \
curl -sSfLk --get https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.30.0/codemirror.min.css \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.css \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.css
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.LICENSE ] && : || \
curl -sSfLk --get https://raw.githubusercontent.com/codemirror/CodeMirror/master/LICENSE \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.LICENSE \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.LICENSE
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/clike.min.js ] && : || \
curl -sSfLk --get https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.30.0/mode/clike/clike.min.js \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/clike.min.js \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/clike.min.js
python3 setup.py build --build-purelib /git/codechecker/tools/report-converter/build/report_converter
running build
running build_py
creating /git/codechecker/tools/report-converter/build
creating /git/codechecker/tools/report-converter/build/report_converter
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter
copying codechecker_report_converter/cli.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter
copying codechecker_report_converter/twodim.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter
copying codechecker_report_converter/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter
copying codechecker_report_converter/util.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter
copying codechecker_report_converter/source_code_comment_handler.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report
copying codechecker_report_converter/report/report_file.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report
copying codechecker_report_converter/report/reports.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report
copying codechecker_report_converter/report/hash.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report
copying codechecker_report_converter/report/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report
copying codechecker_report_converter/report/statistics.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report
copying codechecker_report_converter/report/checker_labels.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers
copying codechecker_report_converter/analyzers/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers
copying codechecker_report_converter/analyzers/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers
copying codechecker_report_converter/analyzers/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/parser
copying codechecker_report_converter/report/parser/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/parser
copying codechecker_report_converter/report/parser/base.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/parser
copying codechecker_report_converter/report/parser/plist.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/parser
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output
copying codechecker_report_converter/report/output/gerrit.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output
copying codechecker_report_converter/report/output/plaintext.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output
copying codechecker_report_converter/report/output/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output
copying codechecker_report_converter/report/output/json.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output
copying codechecker_report_converter/report/output/codeclimate.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output
copying codechecker_report_converter/report/output/baseline.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html
copying codechecker_report_converter/report/output/html/cli.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html
copying codechecker_report_converter/report/output/html/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html
copying codechecker_report_converter/report/output/html/html.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/tslint
copying codechecker_report_converter/analyzers/tslint/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/tslint
copying codechecker_report_converter/analyzers/tslint/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/tslint
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/cppcheck
copying codechecker_report_converter/analyzers/cppcheck/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/cppcheck
copying codechecker_report_converter/analyzers/cppcheck/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/cppcheck
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/cpplint
copying codechecker_report_converter/analyzers/cpplint/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/cpplint
copying codechecker_report_converter/analyzers/cpplint/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/cpplint
copying codechecker_report_converter/analyzers/cpplint/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/cpplint
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sphinx
copying codechecker_report_converter/analyzers/sphinx/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sphinx
copying codechecker_report_converter/analyzers/sphinx/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sphinx
copying codechecker_report_converter/analyzers/sphinx/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sphinx
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/spotbugs
copying codechecker_report_converter/analyzers/spotbugs/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/spotbugs
copying codechecker_report_converter/analyzers/spotbugs/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/spotbugs
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/infer
copying codechecker_report_converter/analyzers/infer/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/infer
copying codechecker_report_converter/analyzers/infer/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/infer
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sparse
copying codechecker_report_converter/analyzers/sparse/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sparse
copying codechecker_report_converter/analyzers/sparse/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sparse
copying codechecker_report_converter/analyzers/sparse/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sparse
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/golint
copying codechecker_report_converter/analyzers/golint/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/golint
copying codechecker_report_converter/analyzers/golint/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/golint
copying codechecker_report_converter/analyzers/golint/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/golint
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/clang_tidy
copying codechecker_report_converter/analyzers/clang_tidy/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/clang_tidy
copying codechecker_report_converter/analyzers/clang_tidy/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/clang_tidy
copying codechecker_report_converter/analyzers/clang_tidy/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/clang_tidy
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/pylint
copying codechecker_report_converter/analyzers/pylint/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/pylint
copying codechecker_report_converter/analyzers/pylint/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/pylint
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/markdownlint
copying codechecker_report_converter/analyzers/markdownlint/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/markdownlint
copying codechecker_report_converter/analyzers/markdownlint/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/markdownlint
copying codechecker_report_converter/analyzers/markdownlint/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/markdownlint
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/kerneldoc
copying codechecker_report_converter/analyzers/kerneldoc/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/kerneldoc
copying codechecker_report_converter/analyzers/kerneldoc/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/kerneldoc
copying codechecker_report_converter/analyzers/kerneldoc/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/kerneldoc
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/roslynator
copying codechecker_report_converter/analyzers/roslynator/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/roslynator
copying codechecker_report_converter/analyzers/roslynator/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/roslynator
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers
copying codechecker_report_converter/analyzers/sanitizers/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers
copying codechecker_report_converter/analyzers/sanitizers/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/pyflakes
copying codechecker_report_converter/analyzers/pyflakes/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/pyflakes
copying codechecker_report_converter/analyzers/pyflakes/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/pyflakes
copying codechecker_report_converter/analyzers/pyflakes/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/pyflakes
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/smatch
copying codechecker_report_converter/analyzers/smatch/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/smatch
copying codechecker_report_converter/analyzers/smatch/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/smatch
copying codechecker_report_converter/analyzers/smatch/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/smatch
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/eslint
copying codechecker_report_converter/analyzers/eslint/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/eslint
copying codechecker_report_converter/analyzers/eslint/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/eslint
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/coccinelle
copying codechecker_report_converter/analyzers/coccinelle/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/coccinelle
copying codechecker_report_converter/analyzers/coccinelle/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/coccinelle
copying codechecker_report_converter/analyzers/coccinelle/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/coccinelle
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/address
copying codechecker_report_converter/analyzers/sanitizers/address/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/address
copying codechecker_report_converter/analyzers/sanitizers/address/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/address
copying codechecker_report_converter/analyzers/sanitizers/address/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/address
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/leak
copying codechecker_report_converter/analyzers/sanitizers/leak/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/leak
copying codechecker_report_converter/analyzers/sanitizers/leak/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/leak
copying codechecker_report_converter/analyzers/sanitizers/leak/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/leak
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/memory
copying codechecker_report_converter/analyzers/sanitizers/memory/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/memory
copying codechecker_report_converter/analyzers/sanitizers/memory/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/memory
copying codechecker_report_converter/analyzers/sanitizers/memory/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/memory
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/ub
copying codechecker_report_converter/analyzers/sanitizers/ub/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/ub
copying codechecker_report_converter/analyzers/sanitizers/ub/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/ub
copying codechecker_report_converter/analyzers/sanitizers/ub/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/ub
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/thread
copying codechecker_report_converter/analyzers/sanitizers/thread/analyzer_result.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/thread
copying codechecker_report_converter/analyzers/sanitizers/thread/__init__.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/thread
copying codechecker_report_converter/analyzers/sanitizers/thread/parser.py -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/analyzers/sanitizers/thread
running egg_info
creating report_converter.egg-info
writing report_converter.egg-info/PKG-INFO
writing dependency_links to report_converter.egg-info/dependency_links.txt
writing entry points to report_converter.egg-info/entry_points.txt
writing top-level names to report_converter.egg-info/top_level.txt
writing manifest file 'report_converter.egg-info/SOURCES.txt'
reading manifest file 'report_converter.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.md'
adding license file 'LICENSE.txt'
writing manifest file 'report_converter.egg-info/SOURCES.txt'
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static.css' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static.css' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static.css' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static.css' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static.js' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static.js' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static.js' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static.js' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static.vendor.codemirror' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static.vendor.codemirror' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static.vendor.codemirror' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static.vendor.codemirror' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static
copying codechecker_report_converter/report/output/html/static/index.html -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static
copying codechecker_report_converter/report/output/html/static/layout.html -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static
copying codechecker_report_converter/report/output/html/static/statistics.html -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/css
copying codechecker_report_converter/report/output/html/static/css/buglist.css -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/css
copying codechecker_report_converter/report/output/html/static/css/bugview.css -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/css
copying codechecker_report_converter/report/output/html/static/css/icon.css -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/css
copying codechecker_report_converter/report/output/html/static/css/statistics.css -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/css
copying codechecker_report_converter/report/output/html/static/css/style.css -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/css
copying codechecker_report_converter/report/output/html/static/css/table.css -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/css
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/js
copying codechecker_report_converter/report/output/html/static/js/browsersupport.js -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/js
copying codechecker_report_converter/report/output/html/static/js/buglist.js -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/js
copying codechecker_report_converter/report/output/html/static/js/bugviewer.js -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/js
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/vendor
creating /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/vendor/codemirror
copying codechecker_report_converter/report/output/html/static/vendor/codemirror/clike.min.js -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/vendor/codemirror
copying codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.LICENSE -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/vendor/codemirror
copying codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.css -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/vendor/codemirror
copying codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.js -> /git/codechecker/tools/report-converter/build/report_converter/codechecker_report_converter/report/output/html/static/vendor/codemirror
make[2]: Leaving directory '/git/codechecker/tools/report-converter'
cp -rp /git/codechecker/analyzer/../tools/report-converter/build/report_converter/codechecker_report_converter /git/codechecker/build/CodeChecker/lib/python3 && \
chmod u+x /git/codechecker/build/CodeChecker/lib/python3/codechecker_report_converter/cli.py && \
cd /git/codechecker/build/CodeChecker/bin && \
ln -sf ../lib/python3/codechecker_report_converter/cli.py report-converter
make -C /git/codechecker/analyzer/../analyzer/tools/statistics_collector build
make[2]: Entering directory '/git/codechecker/analyzer/tools/statistics_collector'
python3 setup.py build --build-purelib /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector
running build
running build_py
creating /git/codechecker/analyzer/tools/statistics_collector/build
creating /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector
creating /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector
copying codechecker_statistics_collector/cli.py -> /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector
copying codechecker_statistics_collector/__init__.py -> /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector
copying codechecker_statistics_collector/post_process_stats.py -> /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector
creating /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector/collectors
copying codechecker_statistics_collector/collectors/special_return_value.py -> /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector/collectors
copying codechecker_statistics_collector/collectors/__init__.py -> /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector/collectors
copying codechecker_statistics_collector/collectors/return_value.py -> /git/codechecker/analyzer/tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector/collectors
running egg_info
creating statistics_collector.egg-info
writing statistics_collector.egg-info/PKG-INFO
writing dependency_links to statistics_collector.egg-info/dependency_links.txt
writing entry points to statistics_collector.egg-info/entry_points.txt
writing top-level names to statistics_collector.egg-info/top_level.txt
writing manifest file 'statistics_collector.egg-info/SOURCES.txt'
reading manifest file 'statistics_collector.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
adding license file 'LICENSE.txt'
writing manifest file 'statistics_collector.egg-info/SOURCES.txt'
make[2]: Leaving directory '/git/codechecker/analyzer/tools/statistics_collector'
# Copy statistics-collector files.
cp -r tools/statistics_collector/build/statistics_collector/codechecker_statistics_collector /git/codechecker/build/CodeChecker/lib/python3 && \
chmod u+x /git/codechecker/build/CodeChecker/lib/python3/codechecker_statistics_collector/cli.py && \
cd /git/codechecker/build/CodeChecker/bin && \
ln -sf ../lib/python3/codechecker_statistics_collector/cli.py post-process-stats
make -C /git/codechecker/analyzer/../tools/bazel build
make[2]: Entering directory '/git/codechecker/tools/bazel'
python3 setup.py build --build-purelib /git/codechecker/tools/bazel/build/bazel
running build
running build_py
creating /git/codechecker/tools/bazel/build
creating /git/codechecker/tools/bazel/build/bazel
creating /git/codechecker/tools/bazel/build/bazel/bazel_compile_commands
copying bazel_compile_commands/bazel_compile_commands.py -> /git/codechecker/tools/bazel/build/bazel/bazel_compile_commands
copying bazel_compile_commands/__init__.py -> /git/codechecker/tools/bazel/build/bazel/bazel_compile_commands
running egg_info
creating bazel_compile_commands.egg-info
writing bazel_compile_commands.egg-info/PKG-INFO
writing dependency_links to bazel_compile_commands.egg-info/dependency_links.txt
writing entry points to bazel_compile_commands.egg-info/entry_points.txt
writing top-level names to bazel_compile_commands.egg-info/top_level.txt
writing manifest file 'bazel_compile_commands.egg-info/SOURCES.txt'
reading manifest file 'bazel_compile_commands.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.md'
adding license file 'LICENSE.txt'
writing manifest file 'bazel_compile_commands.egg-info/SOURCES.txt'
make[2]: Leaving directory '/git/codechecker/tools/bazel'
# Copy bazel_compile_commands files.
cp -rp /git/codechecker/analyzer/../tools/bazel/build/bazel/bazel_compile_commands /git/codechecker/build/CodeChecker/lib/python3 && \
chmod u+x /git/codechecker/build/CodeChecker/lib/python3/bazel_compile_commands/bazel_compile_commands.py && \
cd /git/codechecker/build/CodeChecker/bin && \
ln -sf ../lib/python3/bazel_compile_commands/bazel_compile_commands.py bazel-compile-commands
make -C /git/codechecker/analyzer/../analyzer/tools/build-logger all 2> /dev/null || (echo "$LOGGER_BUILD_ERROR_MSG" && false)
make[2]: Entering directory '/git/codechecker/analyzer/tools/build-logger'
cc -m32 -D_GNU_SOURCE -std=c99 -pedantic -Wall -Wextra -O2 -D__LOGGER_MAIN__  src/ldlogger-logger.c src/ldlogger-tool.c src/ldlogger-tool-gcc.c src/ldlogger-tool-javac.c src/ldlogger-util.c -o ldlogger
cc -m32 -D_GNU_SOURCE -std=c99 -pedantic -Wall -Wextra -O2 -Wno-strict-aliasing -fno-exceptions -fPIC -fomit-frame-pointer -fvisibility=hidden -shared -Wl,--no-as-needed -ldl src/ldlogger-hooks.c src/ldlogger-logger.c src/ldlogger-tool.c src/ldlogger-tool-gcc.c src/ldlogger-tool-javac.c src/ldlogger-util.c -o ldlogger_32.so
cc -m64 -D_GNU_SOURCE -std=c99 -pedantic -Wall -Wextra -O2 -Wno-strict-aliasing -fno-exceptions -fPIC -fomit-frame-pointer -fvisibility=hidden -shared -Wl,--no-as-needed -ldl src/ldlogger-hooks.c src/ldlogger-logger.c src/ldlogger-tool.c src/ldlogger-tool-gcc.c src/ldlogger-tool-javac.c src/ldlogger-util.c -o ldlogger_64.so
mkdir -p build/bin
cp ldlogger build/bin
rm -f ldlogger
for x86dir in 'i386' 'i486' 'i586' 'i686'; do \
    mkdir -p build/lib/$x86dir ; \
    cp ldlogger_32.so build/lib/$x86dir/ldlogger.so ; \
done
rm -f ldlogger_32.so
for x8664dir in 'x86_64'; do \
    mkdir -p build/lib/$x8664dir ; \
    cp ldlogger_64.so build/lib/$x8664dir/ldlogger.so ; \
done
rm -f ldlogger_64.so
make[2]: Leaving directory '/git/codechecker/analyzer/tools/build-logger'
mkdir -p /git/codechecker/build/CodeChecker/ld_logger && \
mkdir -p /git/codechecker/build/CodeChecker/bin && \
cp -r /git/codechecker/analyzer/tools/build-logger/build/* /git/codechecker/build/CodeChecker/ld_logger && \
cd /git/codechecker/build/CodeChecker/bin && \
ln -sf ../ld_logger/bin/ldlogger ldlogger
make[1]: Leaving directory '/git/codechecker/analyzer'
BUILD_DIR=/git/codechecker/build make -C /git/codechecker/web package_web
make[1]: Entering directory '/git/codechecker/web'
if ! pip3 install -r ./requirements.txt 2>&1 | grep -q "Requirement already satisfied (use --upgrade to upgrade): codechecker-api"; then \
    if [ "YES" = "YES" ]; then \
      cd server/vue-cli && npm install && rm -rf /git/codechecker/web/server//vue-cli/dist; \
    fi; \
fi
npm WARN deprecated ini@1.3.5: Please update to ini >=1.3.6 to avoid a prototype pollution issue
npm WARN deprecated har-validator@5.1.3: this library is no longer supported
npm WARN deprecated mkdirp@0.5.4: Legacy versions of mkdirp are no longer supported. Please update to mkdirp 1.x. (Note that the API surface has changed to use Promises in 1.x.)
npm WARN deprecated request-promise@4.2.6: request-promise has been deprecated because it extends the now deprecated request package, see https://github.com/request/request/issues/3142
npm WARN deprecated debug@3.2.6: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated debug@4.1.1: Debug versions >=3.2.0 <3.2.7 || >=4 <4.3.1 have a low-severity ReDos regression when used in a Node.js environment. It is recommended you upgrade to 3.2.7 or 4.3.1. (https://github.com/visionmedia/debug/issues/797)
npm WARN deprecated babel-eslint@10.1.0: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
npm WARN deprecated uuid@3.4.0: Please upgrade  to version 7 or higher.  Older versions may use Math.random() in certain circumstances, which is known to be problematic.  See https://v8.dev/blog/math-random for details.
npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142

added 1372 packages in 33s

130 packages are looking for funding
  run `npm fund` for details
if [ "YES" = "YES" ] && [ -d /git/codechecker/web/server//vue-cli/dist ] && [ "f545691eeecb64dfaafefc2a9429d259a474a134" != "" ]; then \
  cd server/vue-cli && npm install && rm -rf /git/codechecker/web/server//vue-cli/dist; \
fi
mkdir -p /git/codechecker/build && \
mkdir -p /git/codechecker/build/CodeChecker/bin && \
mkdir -p /git/codechecker/build/CodeChecker/lib/python3
make -C /git/codechecker/web/../tools/report-converter build
make[2]: Entering directory '/git/codechecker/tools/report-converter'
mkdir -p /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor
mkdir -p /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.js ] && : || \
curl -sSfLk --get https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.30.0/codemirror.min.js \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.js \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.js
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.css ] && : || \
curl -sSfLk --get https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.30.0/codemirror.min.css \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.css \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.min.css
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.LICENSE ] && : || \
curl -sSfLk --get https://raw.githubusercontent.com/codemirror/CodeMirror/master/LICENSE \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.LICENSE \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/codemirror.LICENSE
[ -f /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/clike.min.js ] && : || \
curl -sSfLk --get https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.30.0/mode/clike/clike.min.js \
         -z /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/clike.min.js \
         -o /git/codechecker/tools/report-converter/codechecker_report_converter/report/output/html/static/vendor/codemirror/clike.min.js
python3 setup.py build --build-purelib /git/codechecker/tools/report-converter/build/report_converter
running build
running build_py
running egg_info
writing report_converter.egg-info/PKG-INFO
writing dependency_links to report_converter.egg-info/dependency_links.txt
writing entry points to report_converter.egg-info/entry_points.txt
writing top-level names to report_converter.egg-info/top_level.txt
reading manifest file 'report_converter.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no files found matching 'README.md'
adding license file 'LICENSE.txt'
writing manifest file 'report_converter.egg-info/SOURCES.txt'
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static.css' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static.css' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static.css' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static.css' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static.js' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static.js' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static.js' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static.js' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
/home/me/cc/lib/python3.11/site-packages/setuptools/command/build_py.py:202: SetuptoolsDeprecationWarning:     Installing 'codechecker_report_converter.report.output.html.static.vendor.codemirror' as data is deprecated, please list it in `packages`.
    !!

    ############################
    # Package would be ignored #
    ############################
    Python recognizes 'codechecker_report_converter.report.output.html.static.vendor.codemirror' as an importable package,
    but it is not listed in the `packages` configuration of setuptools.

    'codechecker_report_converter.report.output.html.static.vendor.codemirror' has been automatically added to the distribution only
    because it may contain data files, but this behavior is likely to change
    in future versions of setuptools (and therefore is considered deprecated).

    Please make sure that 'codechecker_report_converter.report.output.html.static.vendor.codemirror' is included as a package by using
    the `packages` configuration field or the proper discovery methods
    (for example by using `find_namespace_packages(...)`/`find_namespace:`
    instead of `find_packages(...)`/`find:`).

    You can read more about "package discovery" and "data files" on setuptools
    documentation page.

!!

  check.warn(importable)
make[2]: Leaving directory '/git/codechecker/tools/report-converter'
cp -rp /git/codechecker/web/../tools/report-converter/build/report_converter/codechecker_report_converter /git/codechecker/build/CodeChecker/lib/python3 && \
chmod u+x /git/codechecker/build/CodeChecker/lib/python3/codechecker_report_converter/cli.py && \
cd /git/codechecker/build/CodeChecker/bin && \
ln -sf ../lib/python3/codechecker_report_converter/cli.py report-converter
cd /git/codechecker/web/server//vue-cli && \
npm install && \
npm run-script build && \
echo f545691eeecb64dfaafefc2a9429d259a474a134 > /git/codechecker/web/server//vue-cli/dist/.build-commit

up to date in 18s

130 packages are looking for funding
  run `npm fund` for details

> codechecker@1.0.0 build
> rimraf dist && cross-env NODE_ENV=production webpack --config config/webpack.prod.js

Browserslist: caniuse-lite is outdated. Please run:
  npx browserslist@latest --update-db
  Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating
assets by path images/ 3.14 MiB 65 assets
assets by info 6.8 MiB [immutable]
  assets by path *.js 3.77 MiB
    assets by status 3.42 MiB [big] 2 assets
  assets by chunk 3.03 MiB (auxiliary name: vendors)
    asset materialdesignicons-webfont.e044ed2.eot 1.09 MiB [emitted] [immutable] [from: node_modules/@mdi/font/fonts/materialdesignicons-webfont.eot] [big] (auxiliary name: vendors) (auxiliary id hint: defaultVendors)
    asset materialdesignicons-webfont.5d42b4e.ttf 1.09 MiB [emitted] [immutable] [from: node_modules/@mdi/font/fonts/materialdesignicons-webfont.ttf] [big] (auxiliary name: vendors) (auxiliary id hint: defaultVendors)
    asset materialdesignicons-webfont.5dff34d.woff 509 KiB [emitted] [immutable] [from: node_modules/@mdi/font/fonts/materialdesignicons-webfont.woff] [big] (auxiliary name: vendors) (auxiliary id hint: defaultVendors)
    asset materialdesignicons-webfont.606b164.woff2 353 KiB [emitted] [immutable] [from: node_modules/@mdi/font/fonts/materialdesignicons-webfont.woff2] [big] (auxiliary name: vendors) (auxiliary id hint: defaultVendors)
assets by path *.png 984 KiB 14 assets
asset favicon.ico 1.78 KiB [emitted]
asset browsersupport.js 1.05 KiB [emitted] [from: src/browsersupport.js] [copied] [minimized]
asset index.html 724 bytes [emitted]
asset static.js 0 bytes [emitted] [from: src/static.js] [copied] [minimized]
Entrypoint main [big] 3.42 MiB (3.05 MiB) = runtime.b43e4234a64243c9315a.js 3.15 KiB vendors.11a7842f15ee095517d8.js 3.16 MiB main.6ceea2885841f469b6bb.js 259 KiB 5 auxiliary assets
orphan modules 2.39 MiB [orphan] 1400 modules
runtime modules 7.67 KiB 12 modules
built modules 8.11 MiB [built]
  modules by path ./node_modules/ 6.92 MiB 868 modules
  modules by path ./src/ 1.19 MiB
    modules by path ./src/components/ 688 KiB 95 modules
    modules by path ./src/views/ 384 KiB 19 modules
    modules by path ./src/assets/ 39.2 KiB 15 modules
    modules by path ./src/store/ 19.2 KiB 3 modules
    modules by path ./src/*.vue 1.45 KiB
      ./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-4[0].rules[0].use[1]!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-4[0].rules[0].use[2]!./node_modules/vue-loader/lib/index.js??vue-loader-options!./src/App.vue?vue&type=style&index=0&lang=scss& 762 bytes [built] [code generated]
      ./node_modules/css-loader/dist/cjs.js??clonedRuleSet-4[0].rules[0].use[1]!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-4[0].rules[0].use[2]!./node_modules/vue-loader/lib/index.js??vue-loader-options!./src/App.vue?vue&type=style&index=0&lang=scss& 727 bytes [built] [code generated]
    modules by path ./src/mixins/ 8.86 KiB
      ./src/mixins/index.js + 7 modules 7.88 KiB [built] [code generated]
      ./src/mixins/date.mixin.js 1000 bytes [built] [code generated]

WARNING in asset size limit: The following asset(s) exceed the recommended size limit (244 KiB).
This can impact web performance.
Assets: 
  materialdesignicons-webfont.e044ed2.eot (1.09 MiB)
  materialdesignicons-webfont.606b164.woff2 (353 KiB)
  materialdesignicons-webfont.5dff34d.woff (509 KiB)
  materialdesignicons-webfont.5d42b4e.ttf (1.09 MiB)
  2d39422cd3aa08e2c9d27844e52cf651.png (267 KiB)
  images/reports/reports.png (396 KiB)
  images/new_features/6.17.0/git_blame.png (267 KiB)
  main.6ceea2885841f469b6bb.js (259 KiB)
  vendors.11a7842f15ee095517d8.js (3.16 MiB)

WARNING in entrypoint size limit: The following entrypoint(s) combined asset size exceeds the recommended limit (244 KiB). This can impact web performance.
Entrypoints:
  main (3.42 MiB)
      runtime.b43e4234a64243c9315a.js
      vendors.11a7842f15ee095517d8.js
      main.6ceea2885841f469b6bb.js

webpack 5.66.0 compiled with 2 warnings in 119680 ms
mkdir -p /git/codechecker/build/CodeChecker/www
cp -r /git/codechecker/web/server//vue-cli/dist/* /git/codechecker/build/CodeChecker/www
make[1]: Leaving directory '/git/codechecker/web'
# Copy libraries.
mkdir -p /git/codechecker/build/CodeChecker/lib/python3/codechecker && \
cp -r /git/codechecker/codechecker_common /git/codechecker/build/CodeChecker/lib/python3 && \
cp -r /git/codechecker/analyzer/codechecker_analyzer /git/codechecker/build/CodeChecker/lib/python3 && \
cp -r /git/codechecker/web/codechecker_web /git/codechecker/build/CodeChecker/lib/python3 && \
cp -r /git/codechecker/web/server//codechecker_server /git/codechecker/build/CodeChecker/lib/python3 && \
cp -r /git/codechecker/web/client//codechecker_client /git/codechecker/build/CodeChecker/lib/python3
# Copy config files and extend 'version.json' file with git information.
cp -r /git/codechecker/config /git/codechecker/build/CodeChecker && \
cp -r /git/codechecker/analyzer/config/* /git/codechecker/build/CodeChecker/config && \
cp -r /git/codechecker/web/config/* /git/codechecker/build/CodeChecker/config && \
cp -r /git/codechecker/web/server//config/* /git/codechecker/build/CodeChecker/config && \
python3 ./scripts/build/extend_version_file.py -r /git/codechecker \
/git/codechecker/build/CodeChecker/config/analyzer_version.json \
/git/codechecker/build/CodeChecker/config/web_version.json
[INFO] - Extending version file '/git/codechecker/build/CodeChecker/config/analyzer_version.json'.
[INFO] - This is CodeChecker v6.22
[INFO] - Built from Git commit hash: eac25bc82a91ea91b963d768e3c0b7aae6022cbe
[INFO] - Built from Git tags: v6.21.0 (v6.21.0-60-geac25bc8)
[INFO] - Baked with Git tag information merged with configured version: 6.22 (6.22-60-geac25bc8)
[INFO] - Extending version file '/git/codechecker/build/CodeChecker/config/web_version.json'.
[INFO] - This is CodeChecker v6.22
[INFO] - Built from Git commit hash: eac25bc82a91ea91b963d768e3c0b7aae6022cbe
[INFO] - Built from Git tags: v6.21.0 (v6.21.0-60-geac25bc8)
[INFO] - Baked with Git tag information merged with configured version: 6.22 (6.22-60-geac25bc8)
python3 ./scripts/build/create_commands.py -b /git/codechecker/build \
  --cmd-dir /git/codechecker/codechecker_common/cmd \
    /git/codechecker/web/codechecker_web/cmd \
    /git/codechecker/web/server//codechecker_server/cmd \
    /git/codechecker/web/client//codechecker_client/cmd \
    /git/codechecker/analyzer/codechecker_analyzer/cmd \
  --bin-file /git/codechecker/bin/CodeChecker
# Copy license file.
cp /git/codechecker/LICENSE.TXT /git/codechecker/build/CodeChecker
dilyanpalauzov commented 1 year ago

---inst2---


running install
/home/me/cc/lib/python3.11/site-packages/setuptools/command/install.py:34: SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
  warnings.warn(
running build
running build_ext
building 'codechecker_analyzer.ld_logger.lib.ldlogger' extension
creating build/temp.linux-x86_64-cpython-311
creating build/temp.linux-x86_64-cpython-311/analyzer
creating build/temp.linux-x86_64-cpython-311/analyzer/tools
creating build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger
creating build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src
gcc -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LOGGER_MAIN__ -D_GNU_SOURCE -I/home/me/cc/include -I/usr/include/python3.11 -c analyzer/tools/build-logger/src/ldlogger-hooks.c -o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-hooks.o
analyzer/tools/build-logger/src/ldlogger-hooks.c: In function ‘unsetLDPRELOAD’:
analyzer/tools/build-logger/src/ldlogger-hooks.c:46:64: warning: the comparison will always evaluate as ‘true’ for the pointer operand in ‘pos + -1’ must not be NULL [-Waddress]
   46 |     if ((prefix_length == pos_number) && ( pos_number == 0 || (pos-1 && *--pos == '/')))
      |                                                                ^~~
gcc -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LOGGER_MAIN__ -D_GNU_SOURCE -I/home/me/cc/include -I/usr/include/python3.11 -c analyzer/tools/build-logger/src/ldlogger-logger.c -o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-logger.o
gcc -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LOGGER_MAIN__ -D_GNU_SOURCE -I/home/me/cc/include -I/usr/include/python3.11 -c analyzer/tools/build-logger/src/ldlogger-tool-gcc.c -o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-tool-gcc.o
gcc -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LOGGER_MAIN__ -D_GNU_SOURCE -I/home/me/cc/include -I/usr/include/python3.11 -c analyzer/tools/build-logger/src/ldlogger-tool-javac.c -o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-tool-javac.o
gcc -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LOGGER_MAIN__ -D_GNU_SOURCE -I/home/me/cc/include -I/usr/include/python3.11 -c analyzer/tools/build-logger/src/ldlogger-tool.c -o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-tool.o
gcc -Wsign-compare -DDYNAMIC_ANNOTATIONS_ENABLED=1 -DNDEBUG -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -O2 -fexceptions -g -grecord-gcc-switches -pipe -Wall -Werror=format-security -Wp,-D_FORTIFY_SOURCE=2 -Wp,-D_GLIBCXX_ASSERTIONS -fstack-protector-strong -m64 -mtune=generic -fasynchronous-unwind-tables -fstack-clash-protection -fcf-protection -D_GNU_SOURCE -fPIC -fwrapv -fPIC -D__LOGGER_MAIN__ -D_GNU_SOURCE -I/home/me/cc/include -I/usr/include/python3.11 -c analyzer/tools/build-logger/src/ldlogger-util.c -o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-util.o
creating build/lib.linux-x86_64-cpython-311
creating build/lib.linux-x86_64-cpython-311/codechecker_analyzer
creating build/lib.linux-x86_64-cpython-311/codechecker_analyzer/ld_logger
creating build/lib.linux-x86_64-cpython-311/codechecker_analyzer/ld_logger/lib
gcc -shared -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -Wl,--build-id=sha1 -g -Wl,-z,relro -Wl,--as-needed -Wl,-z,now -Wl,--build-id=sha1 -g build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-hooks.o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-logger.o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-tool-gcc.o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-tool-javac.o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-tool.o build/temp.linux-x86_64-cpython-311/analyzer/tools/build-logger/src/ldlogger-util.o -L/usr/lib64 -o build/lib.linux-x86_64-cpython-311/codechecker_analyzer/ld_logger/lib/ldlogger.so -O2 -fomit-frame-pointer -fvisibility=hidden -pedantic -Wl,--no-as-needed -ldl
running build_scripts
creating build/scripts-3.11
copying and adjusting scripts/gerrit_changed_files_to_skipfile.py -> build/scripts-3.11
changing mode of build/scripts-3.11/gerrit_changed_files_to_skipfile.py from 644 to 755
running install_lib
creating /home/me/cc/lib64/python3.11/site-packages/codechecker_analyzer
creating /home/me/cc/lib64/python3.11/site-packages/codechecker_analyzer/ld_logger
creating /home/me/cc/lib64/python3.11/site-packages/codechecker_analyzer/ld_logger/lib
copying build/lib.linux-x86_64-cpython-311/codechecker_analyzer/ld_logger/lib/ldlogger.so -> /home/me/cc/lib64/python3.11/site-packages/codechecker_analyzer/ld_logger/lib
running install_data
creating /home/me/cc/share
creating /home/me/cc/share/codechecker
creating /home/me/cc/share/codechecker/docs
copying docs/README.md -> /home/me/cc/share/codechecker/docs
creating /home/me/cc/share/codechecker/analyzer
copying analyzer/requirements.txt -> /home/me/cc/share/codechecker/analyzer
creating /home/me/cc/share/codechecker/web
copying web/requirements.txt -> /home/me/cc/share/codechecker/web
creating /home/me/cc/share/codechecker/ld_logger
creating /home/me/cc/share/codechecker/ld_logger/include
copying analyzer/tools/build-logger/src/ldlogger-hooks.h -> /home/me/cc/share/codechecker/ld_logger/include
copying analyzer/tools/build-logger/src/ldlogger-tool.h -> /home/me/cc/share/codechecker/ld_logger/include
copying analyzer/tools/build-logger/src/ldlogger-util.h -> /home/me/cc/share/codechecker/ld_logger/include
running install_egg_info
error: error in 'egg_base' option: 'build_dist/CodeChecker/lib/python3' does not exist or is not a directory
bruntib commented 1 year ago

Hi,

It is also required to install the Python dependencies of CodeChecker. So before make package you should execute make venv which installs further pip packages to the virtual env.

dilyanpalauzov commented 1 year ago

Indeed, I have not followed precisely the documentation.