Skip to content

Commit

Permalink
Disable parallel builds for gcc{5,6,7,8} + related libgcc ports on ma…
Browse files Browse the repository at this point in the history
…cOS10.13 due to APFS issues.
  • Loading branch information
cjones051073 committed Sep 28, 2017
1 parent ea5d197 commit d12c4bd
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 4 deletions.
10 changes: 9 additions & 1 deletion lang/gcc5/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,15 @@ configure.cxx_stdlib

build.dir ${configure.dir}
build.target bootstrap-lean
use_parallel_build yes

# Temporary fix to disable parallel builds on macOS 10.13
# See https://trac.macports.org/ticket/54829
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81797
if { ${os.major} < 17 } {
use_parallel_build yes
} else {
use_parallel_build no
}

destroot.target install install-info-host

Expand Down
10 changes: 9 additions & 1 deletion lang/gcc6/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,15 @@ configure.cxx_stdlib

build.dir ${configure.dir}
build.target bootstrap-lean
use_parallel_build yes

# Temporary fix to disable parallel builds on macOS 10.13
# See https://trac.macports.org/ticket/54829
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81797
if { ${os.major} < 17 } {
use_parallel_build yes
} else {
use_parallel_build no
}

destroot.target install install-info-host

Expand Down
10 changes: 9 additions & 1 deletion lang/gcc7/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,15 @@ configure.cxx_stdlib

build.dir ${configure.dir}
build.target bootstrap-lean
use_parallel_build yes

# Temporary fix to disable parallel builds on macOS 10.13
# See https://trac.macports.org/ticket/54829
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81797
if { ${os.major} < 17 } {
use_parallel_build yes
} else {
use_parallel_build no
}

destroot.target install install-info-host

Expand Down
10 changes: 9 additions & 1 deletion lang/gcc8/Portfile
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,15 @@ configure.cxx_stdlib

build.dir ${configure.dir}
build.target bootstrap-lean
use_parallel_build yes

# Temporary fix to disable parallel builds on macOS 10.13
# See https://trac.macports.org/ticket/54829
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81797
if { ${os.major} < 17 } {
use_parallel_build yes
} else {
use_parallel_build no
}

destroot.target install install-info-host

Expand Down

0 comments on commit d12c4bd

Please sign in to comment.