Convert build from GNU Make to CMake (#97)
Showing 4 of 48 files from the diff.
src/tsim.c
changed.
src/common.h
changed.
Other files ignored by Codecov
scripts/gtkwave/disasm.sh
has changed.
.github/workflows/c.yml
has changed.
Makefile
has changed.
hw/vpi/CMakeLists.txt
is new.
CMakeLists.txt
has changed.
test/compare/tsim/err/plugin_nested_init
has changed.
INSTALL
was deleted.
hw/icarus/CMakeLists.txt
is new.
src/CMakeLists.txt
is new.
mk/os/vars/Darwin.mk
was deleted.
src/devices/CMakeLists.txt
is new.
mk/sdl.mk
was deleted.
mk/common.mk
was deleted.
test/compare/tsim/err/deref_zero_failure
has changed.
ex/Makefile
was deleted.
.gitignore
has changed.
src/tenyr_config.h.in
is new.
test/compare/tsim/err/plugin_operation
has changed.
src/os/Win32/CMakeLists.txt
is new.
test/Makefile
was deleted.
mk/jit.mk
was deleted.
scripts/path.sh
was deleted.
hw/vpi/Makefile
was deleted.
test/compare/tsim/err/plugin_initialisation
has changed.
src/os/CMakeLists.txt
is new.
cmake/CMakeDetermineTENYRCompiler.cmake
has changed.
mk/os/vars/Linux.mk
was deleted.
mk/os/vars/default.mk
was deleted.
hw/icarus/Makefile
was deleted.
test/compare/tsim/err/plugin_finalisation
has changed.
mk/compiler/gcc.mk
was deleted.
mk/misc.mk
was deleted.
tests.cmake
is new.
mk/rules.mk
was deleted.
src/os/Linux/CMakeLists.txt
is new.
mk/pedantic.mk
was deleted.
test/compare/tsim/err/address_invalid
has changed.
mk/compiler/clang.mk
was deleted.
ex/CMakeLists.txt
has changed.
mk/compiler/default.mk
was deleted.
scripts/install_sdl.sh
was deleted.
cmake/CodeCoverage.cmake
is new.
src/os/Darwin/CMakeLists.txt
is new.
src/os/default/CMakeLists.txt
is new.
@@ -1,3 +1,5 @@
Loading
1 | + | #include "tenyr_config.h" |
|
2 | + | ||
1 | 3 | #include "os_common.h" |
|
2 | 4 | ||
3 | 5 | #include "asm.h" |
@@ -34,7 +36,7 @@
Loading
34 | 36 | ||
35 | 37 | static const char *version(void) |
|
36 | 38 | { |
|
37 | - | return "tas version " STR(BUILD_NAME) " built " __DATE__; |
|
39 | + | return "tas version " BUILD_NAME " built " __DATE__; |
|
38 | 40 | } |
|
39 | 41 | ||
40 | 42 | static int format_has_output(const struct format *f) |
@@ -1,3 +1,5 @@
Loading
1 | + | #include "tenyr_config.h" |
|
2 | + | ||
1 | 3 | #define _XOPEN_SOURCE (700) /* for strdup */ |
|
2 | 4 | ||
3 | 5 | #include "obj.h" |
@@ -60,7 +62,7 @@
Loading
60 | 62 | ||
61 | 63 | static const char *version(void) |
|
62 | 64 | { |
|
63 | - | return "tld version " STR(BUILD_NAME) " built " __DATE__; |
|
65 | + | return "tld version " BUILD_NAME " built " __DATE__; |
|
64 | 66 | } |
|
65 | 67 | ||
66 | 68 |
@@ -1,3 +1,5 @@
Loading
1 | + | #include "tenyr_config.h" |
|
2 | + | ||
1 | 3 | #include "os_common.h" |
|
2 | 4 | #include "plugin.h" |
|
3 | 5 |
@@ -89,7 +91,7 @@
Loading
89 | 91 | ||
90 | 92 | static const char *version(void) |
|
91 | 93 | { |
|
92 | - | return "tsim version " STR(BUILD_NAME) " built " __DATE__; |
|
94 | + | return "tsim version " BUILD_NAME " built " __DATE__; |
|
93 | 95 | } |
|
94 | 96 | ||
95 | 97 | static int format_has_input(const struct format *f) |
1508441716
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.