Hi,<div><br></div><div>I&#39;m porting a benchmark program to Barrelfish (SCC). This program needs to read input from a file. But I didn&#39;t find any file I/O interface from the Barrelfish doc or from the source code. Any ideas on this?</div>

<div><br></div><div>Currently, I first format the input file and then include it within a static array declaration. The expanded array size will be about 20M. The following compile error occurs:</div><div><br></div><div>
/usr/bin/ld: section .<a href="http://data.rel.ro">data.rel.ro</a> loaded at [0000000000600000,0000000000600723] overlaps section .rodata loaded at [00000000003a39c0,00000000016c7f77]</div>
<div><br></div><div>And from the command line, I found these options:</div><div><br></div><div>-Wl,-section-start,.text=0x300000 -Wl,-section-start,.<a href="http://data.rel.ro">data.rel.ro</a>=0x600000</div><div><br></div>

<div>Does it mean that the text section must fit in [0x300000, 0x600000]? I tried to move the <a href="http://data.rel.ro">data.rel.ro</a> section to some other address like 0x6000000, but the program just halts. If Barrelfish (scc) doesn&#39;t not support file system at the moment, is it possible that I tweak these parameters and get the giant array fits ?</div>

<div><br></div><div>Thanks,</div><div>Jinghao</div><div><br></div><div><br></div><div><br></div>