Advertisement
MarioMario456

FIXME

Feb 16th, 2021
1,218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.95 KB | None | 0 0
  1. Binutils was configured with:
  2.  
  3.     ../binutils/configure --build=$HOST --host=$HOST --target=$TARGET --prefix=$PREFIX --with-sysroot=$SYSROOT --enable-gold=yes --disable-multilib
  4.  
  5. Bootstrap GCC was configured with: (The bootstrap GCC was used to build glibc)
  6.  
  7.     ../gcc/configure --build=$HOST --host=$HOST --target=$TARGET --prefix=$PREFIX --with-sysroot=$SYSROOT --without-headers --with-newlib --disable-threads --disable-shared --enable-languages=c,c++ --disable-multilib
  8.  
  9. glibc for the target was configured with:
  10.  
  11.     ../glibc/configure --build=$HOST --host=$TARGET --prefix=$SYSROOT --with-sysroot=$SYSROOT --disable-multilib
  12.  
  13. Full GCC was configured with:
  14.  
  15.     ../gcc/configure --build=$HOST --host=$HOST --target=$TARGET --prefix=$PREFIX --with-sysroot=$SYSROOT --enable-languages=all --disable-multilib
  16.  
  17. where:
  18.  
  19. $HOST = x86_64-linux-gnu
  20. $TARGET = i686-linux-gnu
  21. $PREFIX = /buildtools/linux/x86-32/usr
  22. $SYSROOT = /buildtools/linux/x86-32
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement