From f634e1abc85177132cd76123a2d3717976b4ff27 Mon Sep 17 00:00:00 2001 From: Marcus10110 Date: Mon, 3 Oct 2016 15:21:50 -0700 Subject: [PATCH] updated the build_analyzer.py script on OSX, so that it now uses the AnalyzerSDK directory, and no longer assumes the AnalyzerSDK files are an extra directory above. --- build_analyzer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build_analyzer.py b/build_analyzer.py index e293b02..4ddd7ee 100644 --- a/build_analyzer.py +++ b/build_analyzer.py @@ -38,8 +38,8 @@ cpp_files = glob.glob( "*.cpp" ); os.chdir( ".." ) #specify the search paths/dependencies/options for gcc -include_paths = [ "../include" ] -link_paths = [ "../lib" ] +include_paths = [ "./AnalyzerSDK/include" ] +link_paths = [ "./AnalyzerSDK/lib" ] link_dependencies = [ "-lAnalyzer" ] #refers to libAnalyzer.dylib or libAnalyzer.so debug_compile_flags = "-O0 -w -c -fpic -g"