From ad25dc65d6c4c30c5356f85ad11e49c7ce4aa55f Mon Sep 17 00:00:00 2001 From: Matthias Jung Date: Wed, 3 Aug 2016 10:29:10 +0200 Subject: [PATCH] Moved to the latest python 3.5.2 --- DRAMSys/analyzer/traceAnalyzer.pro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DRAMSys/analyzer/traceAnalyzer.pro b/DRAMSys/analyzer/traceAnalyzer.pro index f42954ca..177e2b4d 100644 --- a/DRAMSys/analyzer/traceAnalyzer.pro +++ b/DRAMSys/analyzer/traceAnalyzer.pro @@ -26,8 +26,8 @@ macx: { LIBS += -F/opt/qwt-6.1.2/lib/ -framework qwt INCLUDEPATH += /opt/qwt-6.1.2/lib/qwt.framework/Headers DEPENDPATH += /opt/qwt-6.1.2 - INCLUDEPATH += /opt/local/Library/Frameworks/Python.framework/Versions/3.4/include/python3.4m - LIBS += -L/opt/local/Library/Frameworks/Python.framework/Versions/3.4/lib/python3.4/config-3.4m/ -lpython3.4 + INCLUDEPATH += /usr/local/Cellar/python3/3.5.2_1/Frameworks/Python.framework/Versions/3.5/include/python3.5m + LIBS += -L/usr/local/Cellar/python3/3.5.2_1/Frameworks/Python.framework/Versions/3.5/lib -lpython3.5 } # QWT library and header files @@ -58,12 +58,12 @@ message(Python home is $${python_home}) python_headers = $$(PYTHON_HEADERS) isEmpty(python_headers) { - python_headers = /opt/python/include/python3.4m + python_headers = /opt/python/include/python3.5m } message(Getting python headers from $${python_headers}) CONFIG(python) { - LIBS += -L$${python_home} -lpython3.4m + LIBS += -L$${python_home} -lpython3.5m INCLUDEPATH += $${python_headers} }