From baa226a779ad3f1018c270607a3306c0095da134 Mon Sep 17 00:00:00 2001 From: James Price Date: Tue, 6 Apr 2021 11:42:46 -0400 Subject: [PATCH] Remove compiler options that are specific to Apple (#1114) These are causing test failures for non-Apple implementations of OpenCL running on macOS. --- test_conformance/compiler/test_build_options.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/test_conformance/compiler/test_build_options.cpp b/test_conformance/compiler/test_build_options.cpp index 5bd94115..c25fd10f 100644 --- a/test_conformance/compiler/test_build_options.cpp +++ b/test_conformance/compiler/test_build_options.cpp @@ -61,10 +61,6 @@ const char *optimization_options[] = { "-cl-fast-relaxed-math", "-w", "-Werror", -#if defined( __APPLE__ ) - "-cl-opt-enable", - "-cl-auto-vectorize-enable" -#endif }; cl_int get_result_from_program( cl_context context, cl_command_queue queue, cl_program program, cl_int *outValue )