Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion nob.h
Original file line number Diff line number Diff line change
Expand Up @@ -566,8 +566,10 @@ NOBDEF bool nob_set_current_dir(const char *path);

#ifndef nob_cc
# if _WIN32
# if defined(__GNUC__)
# if defined(__GNUC__) && !defined(_WIN32)
# define nob_cc(cmd) nob_cmd_append(cmd, "cc")
# elif defined(__GNUC__)
# define nob_cc(cmd) nob_cmd_append(cmd, "gcc")
# elif defined(__clang__)
# define nob_cc(cmd) nob_cmd_append(cmd, "clang")
# elif defined(_MSC_VER)
Expand Down