mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-28 17:48:53 +00:00
15 lines
391 B
Plaintext
15 lines
391 B
Plaintext
|
|
||
|
# Microblaze toolchain command prefix
|
||
|
CROSS_DEV_PREFIX ?= mb-
|
||
|
|
||
|
# GCC code optimization level
|
||
|
CC_OLEVEL = -O2
|
||
|
|
||
|
# Disable garbage collection of sections by LD because the MicroBlaze toolchain
|
||
|
# would produce corrupted code with this option enabled.
|
||
|
LD_OPT_GC_SECTIONS =
|
||
|
|
||
|
# Microblaze toolchain doesn't support #pragma GCC diagnostic,
|
||
|
# so avoid correspondig warnings.
|
||
|
CC_WARN += -Wno-pragmas
|