summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_cppext/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* gh-116869: Fix test_cext on RHEL7 (#117010)Victor Stinner2024-03-191-10/+14
| | | | | Remove -std option from CC command line. Skip C++14 test for now on non-Windows platforms (like RHEL7).
* gh-92906: Enable test_cext and test_cppext on Windows (#117000)Victor Stinner2024-03-191-21/+55
| | | | | | | | | | On Windows in release mode, the test_cext and test_cppext can now build C and C++ extensions. * test_cext now also builds the C extension without options. * test_cppext now also builds the C++ extension without options. * Add C++14 test to test_cppext; C++11 is not supported by MSVC. * Make setup_venv_with_pip_setuptools_wheel() quiet when support.verbose is false. Only show stdout and stderr on failure.
* Add support.MS_WINDOWS constant (#110446)Victor Stinner2023-10-061-4/+2
|
* gh-105776: Fix test_cppext when CC contains -std=c11 option (#108343)Victor Stinner2023-08-231-0/+13
| | | | Fix test_cppext when the C compiler command has the "-std=c11" option. Remove "-std=" options from the compiler command.
* gh-108303: Add Lib/test/test_cppext/ sub-directory (#108325)Victor Stinner2023-08-221-0/+42
* Move test_cppext to its own directory * Rename setup_testcppext.py to setup.py * Rename _testcppext.cpp to extension.cpp * The source (extension.cpp) is now also copied by the test.