Skip to content

Commit

Permalink
Let 'make' use CXX configuration variable
Browse files Browse the repository at this point in the history
  • Loading branch information
nilason committed Nov 27, 2023
1 parent b5db45a commit 18b9a71
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config.mk.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
CC = @CC@
CFLAGS = @CFLAGS@
CXXFLAGS += -fPIC -std=c++0x
CXX = @CXX@
CFLAGS += @CFLAGS@
CXXFLAGS += -fPIC -std=c++11 @CXXFLAGS@
SQLPP = @SQLPP@

XML2_CPPFLAGS = @XML2_CPPFLAGS@
Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,7 @@ AC_MSG_RESULT([ PointCloud is now configured for ${host}])
AC_MSG_RESULT()
AC_MSG_RESULT([ -------------- Compiler Info ------------- ])
AC_MSG_RESULT([ C compiler: ${CC} ${CFLAGS}])
AC_MSG_RESULT([ CXX compiler: ${CXX} ${CXXFLAGS}])
AC_MSG_RESULT([ SQL preprocessor: ${SQLPP}])
AC_MSG_RESULT()
AC_MSG_RESULT([ -------------- Dependencies -------------- ])
Expand Down

0 comments on commit 18b9a71

Please sign in to comment.