Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit fa8e42d

Browse files
committed
Add $(CFLAGS) to the simplified build rule for .so libraries on Darwin.
Arguably we should do this on *all* platforms, but for the moment Ill
1 parent 796a3f3 commit fa8e42d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/makefiles/Makefile.darwin

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ endif
1313
# Rule for building shared libs (currently used only for regression test
1414
# shlib ... should go away, since this is not really enough knowledge)
1515
%.so: %.o
16-
$(CC) -bundle -o $@ $< $(BE_DLLLIBS)
16+
$(CC) $(CFLAGS) -bundle -o $@ $< $(BE_DLLLIBS)
1717

1818
sqlmansect = 7

0 commit comments

Comments
 (0)