Skip to content

Commit

Permalink
Merge pull request #18194 from JuliaLang/tk/revert-broken-part-of-18164
Browse files Browse the repository at this point in the history
Revert the part of #18164 that broke the build
  • Loading branch information
Keno committed Aug 23, 2016
2 parents 34e591b + 30478fc commit 3f29b37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Make.inc
Original file line number Diff line number Diff line change
Expand Up @@ -445,9 +445,9 @@ export CCACHE_CPP2 := yes
endif
else #USECCACHE
CC_BASE := $(shell echo $(CC) | cut -d' ' -f1)
CC_ARG := $(shell echo $(CC) | cut -d' ' -f2-)
CC_ARG := $(shell echo $(CC) | cut -s -d' ' -f2-)
CXX_BASE := $(shell echo $(CXX) | cut -d' ' -f1)
CXX_ARG := $(shell echo $(CXX) | cut -d' ' -f2-)
CXX_ARG := $(shell echo $(CXX) | cut -s -d' ' -f2-)
endif

JFFLAGS := -O2 $(fPIC)
Expand Down

2 comments on commit 3f29b37

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Something went wrong when running your job: NanosoldierError: encountered error when retrieving old daily build data: BoundsError(String[],(0,))
Unfortunately, the logs could not be uploaded.
cc @jrevels

Please sign in to comment.