Skip to content

Commit

Permalink
build: use C++ compiler for linking (#3766)
Browse files Browse the repository at this point in the history
  • Loading branch information
gjasny authored Dec 15, 2023
1 parent 043926a commit 48f3723
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aconfigure
Original file line number Diff line number Diff line change
Expand Up @@ -4848,7 +4848,7 @@ fi

if test "$AR_FLAGS" = ""; then AR_FLAGS="rv"; fi

if test "$LD" = ""; then LD="$CC"; fi
if test "$LD" = ""; then LD="$CXX"; fi

if test "$LDOUT" = ""; then LDOUT="-o "; fi

Expand Down
2 changes: 1 addition & 1 deletion aconfigure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ AC_CHECK_TOOLS([AR], [ar gar], :)

if test "$AR_FLAGS" = ""; then AR_FLAGS="rv"; fi
AC_SUBST(AR_FLAGS)
if test "$LD" = ""; then LD="$CC"; fi
if test "$LD" = ""; then LD="$CXX"; fi
AC_SUBST(LD)
if test "$LDOUT" = ""; then LDOUT="-o "; fi
AC_SUBST(LDOUT)
Expand Down

0 comments on commit 48f3723

Please sign in to comment.