Skip to content

Commit

Permalink
BUGFIX: don't reference memcpy in make 'distribute' target
Browse files Browse the repository at this point in the history
  • Loading branch information
Amy Williams committed Jan 2, 2022
1 parent 833d856 commit b0368b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $(EXEC): $(CPPOBJS) $(HEADERS)

# for minimal dependencies on libraries:
distribute: $(CPPOBJS) $(COBJS) $(HEADERS)
$(GPP) -o $(EXEC) $(CPPOBJS) $(COBJS) $(CFLAGS) $(LIBS) -static-libstdc++ -static-libgcc -Wl,--wrap=memcpy
$(GPP) -o $(EXEC) $(CPPOBJS) $(COBJS) $(CFLAGS) $(LIBS) -static-libstdc++ -static-libgcc


# This way of building dependencies (per-file) described at
Expand Down
2 changes: 1 addition & 1 deletion Makefile-gsl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $(EXEC): $(CPPOBJS) $(HEADERS)

# for minimal dependencies on libraries:
distribute: $(CPPOBJS) $(COBJS) $(HEADERS)
$(GPP) -o $(EXEC) $(CPPOBJS) $(COBJS) $(CFLAGS) $(LIBS) -static-libstdc++ -static-libgcc -Wl,--wrap=memcpy
$(GPP) -o $(EXEC) $(CPPOBJS) $(COBJS) $(CFLAGS) $(LIBS) -static-libstdc++ -static-libgcc


# This way of building dependencies (per-file) described at
Expand Down

0 comments on commit b0368b9

Please sign in to comment.