aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2023-03-14 12:49:43 +0000
committerGitHub <noreply@github.com>2023-03-14 12:49:43 +0000
commitd8a798372b041f7a8814ba46a88520852bc01f71 (patch)
tree4f60be27c7beda097eb6142985f8ff9ab306c595 /src
parent93f7d3bfb9addc2203596e3f281f1f5f99b2f6a2 (diff)
parent8d5c8658148a7bfa8c1dd477f4b4ef7c55bc862e (diff)
Merge pull request #2383 from eisbehr/target-features-fix
Fix: -target-feature list missing commas
Diffstat (limited to 'src')
-rw-r--r--src/build_settings.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/build_settings.cpp b/src/build_settings.cpp
index 9aee03676..a2881f801 100644
--- a/src/build_settings.cpp
+++ b/src/build_settings.cpp
@@ -1369,6 +1369,7 @@ gb_internal char const *target_features_set_to_cstring(gbAllocator allocator, bo
gb_memmove(features + len, feature.text, feature.len);
len += feature.len;
if (with_quotes) features[len++] = '"';
+ i += 1;
}
features[len++] = 0;