Skip to content

Commit

Permalink
Use CXX for linking heaps
Browse files Browse the repository at this point in the history
  • Loading branch information
yuxiaomao committed Dec 13, 2024
1 parent a59aa05 commit 16bd516
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -317,7 +317,7 @@ CXXFLAGS:=$(filter-out -std=c11,$(CFLAGS)) -std=c++11
${CC} ${CXXFLAGS} -o $@ -c $< ${HEAPS_CFLAGS}

heaps: ${HEAPS} libhl
${CC} ${CFLAGS} ${HEAPS_CFLAGS} -shared -o heaps.hdll ${HEAPS} ${LIBFLAGS} -L. -lhl
${CXX} ${CFLAGS} ${HEAPS_CFLAGS} -shared -o heaps.hdll ${HEAPS} ${LIBFLAGS} -L. -lhl

mesa:
(cd libs/mesa && ${MAKE})
Expand Down

0 comments on commit 16bd516

Please sign in to comment.