On my Mac, I am using the following command to call g++ in python:
subprocess.run(['g++', './rmc-output/*.cpp', '-w', '-o', 'executable'], check=True,
stderr=PIPE, stdout=PIPE, shell=True)
however, I get the following error while the rmc-output folder is not empty.
clang: error: no such file or directory: './rmc-output/*.cpp'
Am I missing something?