Blame view

buildroot/buildroot-2016.08.1/package/gdb/gdb-python-config 925 Bytes
6b13f685e   김민수   BSP 최초 추가
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
  #!/bin/sh
  
  # This shell script is used to fake Python. Gdb wants to be passed a
  # Python interpreter, to run its own python-config.py program, which
  # uses sysconfig. However, when cross-compiling, this doesn't work
  # well since we would have to use the host Python, whose sysconfig
  # module would return host values.
  #
  # As recommended at
  # https://sourceware.org/gdb/wiki/CrossCompilingWithPythonSupport,
  # this wrapper shell script can be used as a replacement. It ignores
  # the python-config.py script passed as first arguments, and
  # "emulates" its behavior.
  
  if [ $# -ne 2 ] ; then
      echo "Bad # args." >&2
      exit 1
  fi
  
  # The first argument is the path to python-config.py, ignore it.
  
  case "$2" in
      --includes)
  	echo "-I${STAGING_DIR}/usr/include/python2.7"
  	;;
      --ldflags)
  	echo "-lpthread -ldl -lutil -lm -lpython2.7"
  	;;
      --exec-prefix)
  	echo "/usr"
  	;;
      *)
  	echo "Bad arg $2." >&2
  	exit 1
  	;;
  esac