Skip to content
This repository has been archived by the owner on Feb 25, 2024. It is now read-only.

Commit

Permalink
Add -DO_CLOEXEC=0 to ancient CentOS builders
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jun 23, 2015
1 parent 6d457f5 commit 4677caf
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions master/inventory.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@
if name[:3] == "osx":
march = "core2"

# On ancient CentOS systems, O_CLOEXEC makes LLVM sad
if name[:10] == "centos-5.11":
flags += 'CFLAGS="-DO_CLOEXEC=0"'

# Add MARCH to flags
flags += "MARCH=%s "%(march)
c['slaves'] += [BuildSlave(name, 'julialang42', max_builds=1,
Expand Down

0 comments on commit 4677caf

Please sign in to comment.