[Mesa-dev] [PATCH] swr/rast: Fix macOS macro.

Eric Engestrom eric.engestrom at imgtec.com
Mon Feb 26 16:08:11 UTC 2018


On Saturday, 2018-02-24 23:55:21 +0000, Vinson Lee wrote:
> Fixes: a25093de7188 ("swr/rast: Implement JIT shader caching to disk")
> Signed-off-by: Vinson Lee <vlee at freedesktop.org>

Reviewed-by: Eric Engestrom <eric.engestrom at imgtec.com>

> ---
>  src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
> index ab7c6eb15b09..0cefa43529fc 100644
> --- a/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
> +++ b/src/gallium/drivers/swr/rasterizer/jitter/JitManager.cpp
> @@ -47,7 +47,7 @@
>  #define JITTER_OUTPUT_DIR SWR_OUTPUT_DIR "\\Jitter"
>  #endif // _WIN32
>  
> -#if defined(__APPLE) || defined(FORCE_LINUX) || defined(__linux__) || defined(__gnu_linux__)
> +#if defined(__APPLE__) || defined(FORCE_LINUX) || defined(__linux__) || defined(__gnu_linux__)
>  #include <pwd.h>
>  #include <sys/stat.h>
>  #endif
> @@ -532,7 +532,7 @@ static inline uint32_t ComputeModuleCRC(const llvm::Module* M)
>  /// constructor
>  JitCache::JitCache()
>  {
> -#if defined(__APPLE) || defined(FORCE_LINUX) || defined(__linux__) || defined(__gnu_linux__)
> +#if defined(__APPLE__) || defined(FORCE_LINUX) || defined(__linux__) || defined(__gnu_linux__)
>      if (strncmp(KNOB_JIT_CACHE_DIR.c_str(), "~/", 2) == 0) {
>          char *homedir;
>          if (!(homedir = getenv("HOME"))) {
> -- 
> 2.16.2
> 


More information about the mesa-dev mailing list