Skip to content

Commit

Permalink
Switch to using clang to link for c2.
Browse files Browse the repository at this point in the history
  • Loading branch information
hgreenlee committed Sep 24, 2019
1 parent a5ac377 commit 9acf472
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile/Makefile.Linux
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@

CXX = $(LARLITE_CXX)
LD = g++
LD = $(LARLITE_CXX)
LDFLAGS += -Wl,-rpath,$(LARLITE_BASEDIR)/lib
FFLAGS += -Wall
FLDFLAGS += -lstdc++ -shared
CXXFLAGS += -g -O3 $(LARLITE_CXXSTDFLAG) -W -Wall -Wno-deprecated -fPIC -D_CORE_$(shell uname -s)_
SOMAKER = g++
SOMAKER = $(LARLITE_CXX)
SOFLAGS = -g -fPIC -shared

0 comments on commit 9acf472

Please sign in to comment.