make/linux/makefiles/gcc.make

changeset 6462
e2722a66aba7
parent 6452
faf0c78e906b
parent 5576
badf4244ceae
child 6472
2b8e28fdf503
equal deleted inserted replaced
6461:bdd155477289 6462:e2722a66aba7
400 # We are building Embedded for a small device 400 # We are building Embedded for a small device
401 # favor code space over speed 401 # favor code space over speed
402 ifdef MINIMIZE_RAM_USAGE 402 ifdef MINIMIZE_RAM_USAGE
403 CFLAGS += -DMINIMIZE_RAM_USAGE 403 CFLAGS += -DMINIMIZE_RAM_USAGE
404 endif 404 endif
405
406 # Stack walking in the JVM relies on frame pointer (%rbp) to walk thread stack.
407 # Explicitly specify -fno-omit-frame-pointer because it is off by default
408 # starting with gcc 4.6.
409 ifndef USE_SUNCC
410 CFLAGS += -fno-omit-frame-pointer
411 endif

mercurial