增加内核日志功能 #3
|
@ -26,8 +26,11 @@ RSCFLAGS = --emit obj --crate-type lib \
|
||||||
-L crate="${PWD}/../rustlib/${ARCH}/src/" \
|
-L crate="${PWD}/../rustlib/${ARCH}/src/" \
|
||||||
-C code-model=large \
|
-C code-model=large \
|
||||||
-C relocation-model=static \
|
-C relocation-model=static \
|
||||||
-C embed-bitcode=no \
|
-C embed-bitcode=no
|
||||||
-C opt-level=z
|
|
||||||
|
ifdef release
|
||||||
|
RSCFLAGS := -O
|
||||||
|
endif
|
||||||
|
|
||||||
ifeq (${ARCH},x86_64)
|
ifeq (${ARCH},x86_64)
|
||||||
RSCFLAGS := ${RSCFLAGS} -C target-feature=-sse,-avx
|
RSCFLAGS := ${RSCFLAGS} -C target-feature=-sse,-avx
|
||||||
|
|
|
@ -62,6 +62,46 @@ SECTIONS {
|
||||||
{}
|
{}
|
||||||
.igot.plt :
|
.igot.plt :
|
||||||
{}
|
{}
|
||||||
|
.tbss :
|
||||||
|
{
|
||||||
|
*(.tbss)
|
||||||
|
}
|
||||||
|
.tdata :
|
||||||
|
{
|
||||||
|
*(.tdata)
|
||||||
|
}
|
||||||
|
.debug_line :
|
||||||
|
{
|
||||||
|
*(.debug_line)
|
||||||
|
}
|
||||||
|
.debug_abbrev :
|
||||||
|
{
|
||||||
|
*(.debug_abbrev)
|
||||||
|
}
|
||||||
|
.debug_info :
|
||||||
|
{
|
||||||
|
*(.debug_info)
|
||||||
|
}
|
||||||
|
.debug_str :
|
||||||
|
{
|
||||||
|
*(.debug_str)
|
||||||
|
}
|
||||||
|
.debug_aranges :
|
||||||
|
{
|
||||||
|
*(.debug_aranges)
|
||||||
|
}
|
||||||
|
.debug_ranges :
|
||||||
|
{
|
||||||
|
*(.debug_ranges)
|
||||||
|
}
|
||||||
|
.debug_pubnames :
|
||||||
|
{
|
||||||
|
*(.debug_pubnames)
|
||||||
|
}
|
||||||
|
.debug_pubtypes :
|
||||||
|
{
|
||||||
|
*(.debug_pubtypes)
|
||||||
|
}
|
||||||
.kend :
|
.kend :
|
||||||
{
|
{
|
||||||
*(.kend)
|
*(.kend)
|
||||||
|
|
Loading…
Reference in New Issue