You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The intended entry point based on the Makefile build system is bin/CodeChecker.py, but setup.py states that the CodeChecker command should be provided by the codechecker_common.cli:main.
CodeChecker version
current dev branch
To Reproduce
Steps to reproduce the behaviour: python3 setup.py sdist
then install inside a virtualenv python3 setup.py install
see the contents of the installed codechecker script cat $(which CodeChecker)
verify that the contents are not the same as bin/CodeChecker.py
Expected behaviour
The content of the file installed during the setuptools install should be the same as bin/CodeChecker.py
Desktop (please complete the following information)
OS: Linux WSL
Version: Ubuntu 24.04
Additional context
The project has its roots in Makefiles, and setuptools packaging is added later on, and got out of sync over time with the makefile-based build system.
The text was updated successfully, but these errors were encountered:
Describe the bug
The intended entry point based on the Makefile build system is
bin/CodeChecker.py
, butsetup.py
states that the CodeChecker command should be provided by thecodechecker_common.cli:main
.CodeChecker version
current dev branch
To Reproduce
Steps to reproduce the behaviour:
python3 setup.py sdist
then install inside a virtualenv
python3 setup.py install
see the contents of the installed codechecker script
cat $(which CodeChecker)
verify that the contents are not the same as
bin/CodeChecker.py
Expected behaviour
The content of the file installed during the setuptools install should be the same as
bin/CodeChecker.py
Desktop (please complete the following information)
Additional context
The project has its roots in Makefiles, and setuptools packaging is added later on, and got out of sync over time with the makefile-based build system.
The text was updated successfully, but these errors were encountered: