Skip to content

Commit ce65dc5

Browse files
nilasonstrk
authored andcommitted
Let 'make' use CXX configuration variable
1 parent e4c6aa1 commit ce65dc5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

config.mk.in

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
CC = @CC@
2-
CFLAGS = @CFLAGS@
3-
CXXFLAGS += -fPIC -std=c++0x
2+
CXX = @CXX@
3+
CFLAGS += @CFLAGS@
4+
CXXFLAGS += -fPIC -std=c++11 @CXXFLAGS@
45
SQLPP = @SQLPP@
56

67
XML2_CPPFLAGS = @XML2_CPPFLAGS@

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,7 @@ AC_MSG_RESULT([ PointCloud is now configured for ${host}])
377377
AC_MSG_RESULT()
378378
AC_MSG_RESULT([ -------------- Compiler Info ------------- ])
379379
AC_MSG_RESULT([ C compiler: ${CC} ${CFLAGS}])
380+
AC_MSG_RESULT([ CXX compiler: ${CXX} ${CXXFLAGS}])
380381
AC_MSG_RESULT([ SQL preprocessor: ${SQLPP}])
381382
AC_MSG_RESULT()
382383
AC_MSG_RESULT([ -------------- Dependencies -------------- ])

0 commit comments

Comments
 (0)