1*4882a593Smuzhiyun /* SPDX-License-Identifier: GPL-2.0 */ 2*4882a593Smuzhiyun SECTIONS { 3*4882a593Smuzhiyun /* Group unwind sections into a single section: */ 4*4882a593Smuzhiyun .IA_64.unwind_info : { *(.IA_64.unwind_info*) } 5*4882a593Smuzhiyun .IA_64.unwind : { *(.IA_64.unwind*) } 6*4882a593Smuzhiyun /* 7*4882a593Smuzhiyun * Create place-holder sections to hold the PLTs, GOT, and 8*4882a593Smuzhiyun * official procedure-descriptors (.opd). 9*4882a593Smuzhiyun */ 10*4882a593Smuzhiyun .core.plt : { BYTE(0) } 11*4882a593Smuzhiyun .init.plt : { BYTE(0) } 12*4882a593Smuzhiyun .got : { BYTE(0) } 13*4882a593Smuzhiyun .opd : { BYTE(0) } 14*4882a593Smuzhiyun } 15