Skip to content

Commit 2994dd6

Browse files
yangyanzhanfacebook-github-bot
authored andcommittedApr 25, 2017
Fix python support problems caused by building script errors.
Summary: When trying to build caffe2 with python provided by homebrew, I find out there are some errors in the building scripts. The "get_python_cmake_flags.py" script is supposed to find out the correct python library and header file locations. However, due to these errors, this script does not function correctly. After building, caffe2 is linked against the default python library provided by Apple which causes a crash when trying to validate whether or not the installation is successful: ```shell python -c 'from caffe2.python import core' 2>/dev/null && echo "Success" || echo "Failure" ``` The fix is as simple as follows: - Add "shell" so that command substitution could work under Makefile. - Add blank spaces between -D options so that they are treated as options not makefile targets. - Print the "flags" variable without the newline character so that they could be utilized by command substitution correctly. Closes facebookarchive/caffe2#391 Differential Revision: D4943212 Pulled By: Yangqing fbshipit-source-id: 04d3595fa2d89fe57aed5b6a7a91a95114a82a1b
1 parent 902409b commit 2994dd6

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed
 

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This makefile does nothing but delegating the actual building to cmake.
22

33
all:
4-
@mkdir -p build && cd build && cmake .. $(python ./scripts/get_python_cmake_flags.py) && $(MAKE)
4+
@mkdir -p build && cd build && cmake .. $(shell python ./scripts/get_python_cmake_flags.py) && $(MAKE)
55

66
local:
77
@./scripts/build_local.sh

‎scripts/get_python_cmake_flags.py

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@
3535
if sys.platform == "darwin":
3636
lib = os.path.dirname(lib) + '/Python'
3737
if os.path.isfile(lib):
38-
flags += '-DPYTHON_LIBRARY={lib}'.format(lib=lib)
38+
flags += '-DPYTHON_LIBRARY={lib} '.format(lib=lib)
3939

4040
if os.path.isfile(inc + '/Python.h'):
41-
flags += '-DPYTHON_INCLUDE_DIR={inc}'.format(inc=inc)
41+
flags += '-DPYTHON_INCLUDE_DIR={inc} '.format(inc=inc)
42+
43+
print(flags, end='')

0 commit comments

Comments
 (0)