aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-05-28 02:32:00 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-05-28 02:32:00 -0400
commit076ead369cca6d6e9543f7d65e1059cfb9e82c63 (patch)
tree80e01334723aff0cbca77e4190fa8ace1451022c
parent8df8f5bb828d0cb730db717c6a89aafa9986ae55 (diff)
Change default c compiler to 'cc'
-rw-r--r--tomo.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tomo.c b/tomo.c
index 7c102de0..9fda7791 100644
--- a/tomo.c
+++ b/tomo.c
@@ -110,7 +110,7 @@ int main(int argc, char *argv[])
ldlibs = heap_strf("%s %s", ldlibs, getenv("LDLIBS"));
cc = getenv("CC");
- if (!cc) cc = "tcc";
+ if (!cc) cc = "cc";
array_t object_files = {};
const char *my_obj = heap_strf("%s.o", resolve_path(filename, ".", "."));