diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2023-03-14 12:49:43 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-14 12:49:43 +0000 |
| commit | d8a798372b041f7a8814ba46a88520852bc01f71 (patch) | |
| tree | 4f60be27c7beda097eb6142985f8ff9ab306c595 /src/build_settings.cpp | |
| parent | 93f7d3bfb9addc2203596e3f281f1f5f99b2f6a2 (diff) | |
| parent | 8d5c8658148a7bfa8c1dd477f4b4ef7c55bc862e (diff) | |
Merge pull request #2383 from eisbehr/target-features-fix
Fix: -target-feature list missing commas
Diffstat (limited to 'src/build_settings.cpp')
| -rw-r--r-- | src/build_settings.cpp | 1 |
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; |