-
Notifications
You must be signed in to change notification settings - Fork 27
makefiles
Olga Naumenko edited this page May 17, 2023
·
1 revision
GNU make is a primary tool for incremental build of bitcode and binary files as well. Makefiles for binary files are public, so they may be used for tests running right from the command line.
- Find corresponding makefiles, which are stored in host's project build directory,
utbot\make
subdirectory. For example, makefile forc-example\src\calc.c
would bec-example\build\utbot\make\calc.mk
. Please note: makefiles and tests are generated at the same time. - When necessary makefile is found, use the 'cd' command to move from your present directory to makefile's one.
- Run
make -s -f calc.mk run
, for example. - Congratulations! Your tests are run and status is shown in the command line.