Skip to content

Commit

Permalink
Merge pull request #28 from hgreenlee/trunk
Browse files Browse the repository at this point in the history
Switch to using clang to link for c2.
  • Loading branch information
hgreenlee authored Sep 24, 2019
2 parents 2fd04d4 + 9acf472 commit a7e88ac
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 a7e88ac

Please sign in to comment.