 e58c1f9b35
			
		
	
	
		e58c1f9b35
		
	
	
	
	
		
			
			Since 927128222b0a QEMU depends of keycodemapdb, which uses the python 'csv'
module from stdlib to parse keymaps.csv.
Without this package the build fails:
    GEN     ui/input-keymap-linux-to-qcode.c
  Traceback (most recent call last):
    File "ui/keycodemapdb/tools/keymap-gen", line 15, in <module>
      import csv
  ImportError: No module named csv
    GEN     ui/input-keymap-qcode-to-qnum.c
  Traceback (most recent call last):
    File "ui/keycodemapdb/tools/keymap-gen", line 15, in <module>
      import csv
  ImportError: No module named csv
  [...]
    CC      ui/input-keymap.o
  ui/input-keymap.c:8:44: fatal error: ui/input-keymap-linux-to-qcode.c: No such file or directory
  make: *** [ui/input-keymap.o] Error 1
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
		
	
			
		
			
				
	
	
		
			20 lines
		
	
	
		
			784 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			784 B
		
	
	
	
		
			Docker
		
	
	
	
	
	
| #
 | |
| # Docker mingw cross-compiler target
 | |
| #
 | |
| # This docker target builds on the debian Jessie base image.
 | |
| #
 | |
| FROM qemu:debian8
 | |
| 
 | |
| MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
 | |
| 
 | |
| # Add the foreign architecture we want and install dependencies
 | |
| RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys D43A795B73B16ABE9643FE1AFD8FFF16DB45C6AB && \
 | |
|     echo "deb http://pkg.mxe.cc/repos/apt/debian jessie main" > /etc/apt/sources.list.d/mxeapt.list
 | |
| RUN apt-get update
 | |
| RUN DEBIAN_FRONTEND=noninteractive eatmydata \
 | |
|     apt-get install -y --no-install-recommends \
 | |
|         libpython2.7-stdlib \
 | |
|         $(apt-get -s install -y --no-install-recommends gw32.shared-mingw-w64 gw32.shared-mingw-w64 | egrep "^Inst mxe-x86-64-unknown-" | cut -d\  -f2)
 | |
| 
 | |
| ENV PATH $PATH:/usr/lib/mxe/usr/bin/ 
 |