; Config file to illustrate an example setup for cross-compiling to
; 32-bit x86 (which does not require an additional compiler toolchain).
; The main alterations from defaults are the -m32 flags.

[cpp]
cctool = gcc
cpptool = g++
defaultoptcflags = -m32 --std=c99 -O3 -pipe -DNDEBUG -Wall -Werror
defaultdbgcflags = -m32 --std=c99 -g3 -pipe -DDEBUG -Wall -Werror
defaultoptcppflags = -m32 --std=c++11 -O3 -pipe -DNDEBUG -Wall -Werror
defaultdbgcppflags = -m32 --std=c++11 -g3 -pipe -DDEBUG -Wall -Werror
defaultldflags = -melf_i386

[java]
toolchain = //tools/java:toolchain
