Skip to content

Export CXX for Go

Export CXX for Go #17

Workflow file for this run

name: MacOSBuild
on:
push:
branches:
- 'master'
tags:
- v*
env:
INSTALLPREFIX: "_local"
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install autotools
run: |
brew update
brew install libtool
brew install autoconf
brew install automake
- name: Configure
run: |
mkdir $INSTALLPREFIX
./reconf
CXX="g++ -Wc++11-extensions" ./configure \
--prefix=$(pwd)/$INSTALLPREFIX/ \
--with-cplusplus-ver=201103
- name: Build
run: |
make
make install