diff options
| author | Matt Valentine-House <matt@eightbitraptor.com> | 2024-10-23 20:54:06 +0100 |
|---|---|---|
| committer | Matt Valentine-House <matt@eightbitraptor.com> | 2024-10-24 16:08:46 +0100 |
| commit | 84ec06533d789a787ff766940795678847d7ee59 (patch) | |
| tree | 0a4a8ec631035ae820582032389cff45da04c3f6 | |
| parent | 78378cae66f0ed354d966c6a13359b0e0861f27f (diff) | |
Fix shared-gc build task
include CPPFLAGS, and the correct CFLAGS
Notes
Notes:
Merged: https://github.com/ruby/ruby/pull/11945
| -rw-r--r-- | common.mk | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1914,7 +1914,7 @@ shared-gc: probes.h fi $(ECHO) generating $(shared_gc_dir)librubygc.$(SHARED_GC).$(SOEXT) $(Q) $(MAKEDIRS) $(shared_gc_dir) - $(Q) $(LDSHARED) -I$(srcdir)/include -I$(srcdir) -I$(arch_hdrdir) $(XDLDFLAGS) $(cflags) -DBUILDING_SHARED_GC -fPIC -o $(shared_gc_dir)librubygc.$(SHARED_GC).$(SOEXT) $(srcdir)/gc/$(SHARED_GC).c + $(Q) $(LDSHARED) -I$(srcdir)/include -I$(srcdir) -I$(arch_hdrdir) $(XDLDFLAGS) $(CFLAGS) $(CPPFLAGS) -DBUILDING_SHARED_GC -fPIC -o $(shared_gc_dir)librubygc.$(SHARED_GC).$(SOEXT) $(srcdir)/gc/$(SHARED_GC).c help: PHONY $(MESSAGE_BEGIN) \ |
