Forum Discussion
Altera_Forum
Honored Contributor
21 years ago*new* problem
I'm trying to create a C++ application for uClinux. Really all I need to do is include a class that I created. If I make a pointer to the class and then try to create a new instance of it, I get ...
Altera_Forum
Honored Contributor
21 years ago --- Quote Start --- originally posted by randog77@Jun 21 2005, 05:11 PM what is flthdr?? --- Quote End --- I am using my own toolchain on GNU/Linux, but this tools should be available in a Windows install too.
$ flthdr
No input files provided
usage: flthdr flat-file
Allows you to change an existing flat file
-p : print current settings
-z : compressed flat file
-d : compressed data-only flat file
-Z : un-compressed flat file
-r : ram load
-R : do not RAM load
-k : kernel traced load (for debug)
-K : normal non-kernel traced load
-s size : stack size
-o file : output-file
(default is to modify input file)
$ flthdr -p interface
interface
Magic: bFLT
Rev: 4
Build Date: Wed Jun 22 11:10:40 2005
Entry: 0x44
Data Start: 0xa080
Data End: 0xedb8
BSS End: 0x10e2c
Stack Size: 0x1000
Reloc Start: 0xedb8
Reloc Count: 0x696
Flags: 0x1 ( Load-to-Ram )
$ flthdr -s 8192 interface
$ flthdr -p interface
interface
Magic: bFLT
Rev: 4
Build Date: Wed Jun 22 11:10:40 2005
Entry: 0x44
Data Start: 0xa080
Data End: 0xedb8
BSS End: 0x10e2c
Stack Size: 0x2000
Reloc Start: 0xedb8
Reloc Count: 0x696
Flags: 0x1 ( Load-to-Ram )