changeset 6280:9518035a47e9

Fix cross.change_target_package_x86
author Masamichi Hosoda <trueroad@users.noreply.github.com>
date Sun, 16 Nov 2014 01:02:23 +0900
parents 8d8b634b4839
children c5980a071dd7
files gub/cross.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/gub/cross.py	Sun Nov 16 00:59:48 2014 +0900
+++ b/gub/cross.py	Sun Nov 16 01:02:23 2014 +0900
@@ -254,8 +254,8 @@
                  + package.settings.cross_dir)
     x86_bindir = x86_cross + '/bin'
     x86_cross_bin = x86_cross + '/i686-linux' + '/bin'
-    env['CC'] = x86_cross_bin + '/gcc'
-    env['CXX'] = x86_cross_bin + '/g++'
+    env['CC'] = x86_bindir + '/i686-linux-gcc'
+    env['CXX'] = x86_bindir + '/i686-linux-g++'
     # FIXME: should only remove any %(tools_prefix)s elements from these...
     env['C_INCLUDE_PATH'] = ''
     env['CPLUS_INCLUDE_PATH'] = ''