diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-03-28 18:20:31 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-03-28 18:20:31 -0400 |
| commit | 54103cdf6b4739616cd39dd81734a2ea61e84b82 (patch) | |
| tree | d6f7a812ef242c871283839cb5c4610b4a692ebb | |
| parent | f5018f9b7b2b3d657af6a20438569332c4b7004f (diff) | |
Fix conditional flags
| -rw-r--r-- | src/tomo.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -175,8 +175,8 @@ int main(int argc, char *argv[]) } #ifdef __APPLE__ - cflags = Texts(cflags, " -I/opt/homebrew/include"); - ldflags = Texts(cflags, " -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib"); + cflags = Texts(cflags, Text(" -I/opt/homebrew/include")); + ldflags = Texts(cflags, Text(" -L/opt/homebrew/lib -Wl,-rpath,/opt/homebrew/lib")); #endif if (show_codegen.length > 0 && Text$equal_values(show_codegen, Text("pretty"))) |
