Skip to content

Commit

Permalink
Use clang when possible
Browse files Browse the repository at this point in the history
  • Loading branch information
brummer10 committed Apr 25, 2024
1 parent bdc78ea commit c8b2f9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Ratatouille/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ $(EXEC_NAME)_ui.$(LIB_EXT): $(EXEC_NAME).c $(GUIIMPL_SOURCE) $(UI_LIB)

$(EXEC_NAME).$(LIB_EXT): $(EXEC_NAME).cpp $(RTN_SOURCES) $(NAM_SOURCES) $(IMPL_SOURCE)
@$(B_ECHO) "Compiling $(EXEC_NAME).$(LIB_EXT) $(reset)"
$(QUIET)$(CXX) $(filter-out -fno-gnu-unique,$(CXXFLAGS)) $(FAUSTFLAGS) $(EXEC_NAME).cpp $(RTN_SOURCES) $(NAM_SOURCES) $(LDFLAGS) -o $(EXEC_NAME).$(LIB_EXT)
$(CXX) $(filter-out -fno-gnu-unique,$(CXXFLAGS)) $(FAUSTFLAGS) $(EXEC_NAME).cpp $(RTN_SOURCES) $(NAM_SOURCES) $(LDFLAGS) -o $(EXEC_NAME).$(LIB_EXT)
$(QUIET)$(STRIP) -s -x -X -R .comment -R .note.ABI-tag $(EXEC_NAME).$(LIB_EXT)

install :
Expand Down

0 comments on commit c8b2f9f

Please sign in to comment.