From d789889ad1ccac649f09d7869e83f2106968528b Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Sun, 29 Jun 2014 10:17:02 -0700 Subject: [PATCH] Add symlinks for plat-specific compiler names Python defaults to the compiler that was used to compile python, which winds up being the platform specific compiler name. Add symlinks for these to allow python compilation of extensions to actually find ccache. Change-Id: I84fd75c72adaa0a1277a20f680ad23688611e43d --- modules/jenkins/manifests/slave.pp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/modules/jenkins/manifests/slave.pp b/modules/jenkins/manifests/slave.pp index 4cf44127b8..e19742798e 100644 --- a/modules/jenkins/manifests/slave.pp +++ b/modules/jenkins/manifests/slave.pp @@ -164,6 +164,30 @@ class jenkins::slave( require => Package['ccache'], } + file { "/usr/local/bin/${::hardwareisa}-linux-gnu-gcc": + ensure => link, + target => '/usr/bin/ccache', + require => Package['ccache'], + } + + file { "/usr/local/bin/${::hardwareisa}-linux-gnu-g++": + ensure => link, + target => '/usr/bin/ccache', + require => Package['ccache'], + } + + file { "/usr/local/bin/${::hardwareisa}-linux-gnu-cc": + ensure => link, + target => '/usr/bin/ccache', + require => Package['ccache'], + } + + file { "/usr/local/bin/${::hardwareisa}-linux-gnu-c++": + ensure => link, + target => '/usr/bin/ccache', + require => Package['ccache'], + } + file { '/usr/local/jenkins': ensure => directory, owner => 'root',