When I try to compile my Managed Make project in PODS, I get the following 
error:

/usr/m68k-palmos/bin/ld: region datares is full (MyApp section .data)

I'm using multiple code sections and I have provided output from using objdump 
below, however I am unable to find where the exact problem is since every .data 
section seems to be under the 32k limit. Any ideas? Thanks!

(This command was executed from workspace\MyApp\Debug\src)

m68k-palmos-objdump -h *.o

AppMain.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         0000020e  00000000  00000000  0000008c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         00000110  0000020e  0000020e  0000029a  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          0000000e  0000031e  0000031e  00000000  2**2
                  ALLOC, NEVER_LOAD

Manager.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000f1e  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         00000f58  00000f1e  00000f1e  00000ffa  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000080  00001e76  00001e76  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec1          00001d5c  00000000  00000000  00001f52  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      000001a0  00000000  00000000  00003cae  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

Structs.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         0000004c  00000000  00000000  0000008c  2**2
                  CONTENTS, ALLOC, LOAD, CODE
  1 .data         00000058  0000004c  0000004c  000000d8  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  000000a4  000000a4  00000000  2**2
                  ALLOC, NEVER_LOAD

Book.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         0000006c  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         0000036c  0000006c  0000006c  00000148  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  000003d8  000003d8  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec2          00000c46  00000000  00000000  000004b4  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      0000005c  00000000  00000000  000010fa  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

Printer.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000366  00000000  00000000  0000008c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         0000019c  00000366  00000366  000003f2  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  00000502  00000502  00000000  2**2
                  ALLOC, NEVER_LOAD

BookText.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         000019a2  00000000  00000000  000000b4  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         00000988  000019a2  000019a2  00001a56  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  0000232a  0000232a  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 .gcc_exc      0000002c  00000000  00000000  000023de  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

Register.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         000000c0  00000000  00000000  000000b4  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         000002dc  000000c0  000000c0  00000174  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000004  0000039c  0000039c  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec3          00000e02  00000000  00000000  00000450  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE

MainForm.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000000  00000000  00000000  00000000  2**2
                  ALLOC, LOAD, CODE
  1 .data         000001ec  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000008  000001ec  000001ec  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec4          00000506  00000000  00000000  000002c8  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      0000002c  00000000  00000000  000007ce  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

Field.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000262  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         00001c3c  00000262  00000262  0000033e  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  00001e9e  00001e9e  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec10         000059cc  00000000  00000000  00001f7a  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      000000bc  00000000  00000000  00007946  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

FieldWriter.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000080  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         000003f0  00000080  00000080  0000015c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  00000470  00000470  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec9          00000c44  00000000  00000000  0000054c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      00000068  00000000  00000000  00001190  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

BookForm.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         0000006e  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         00000194  0000006e  0000006e  0000014a  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          0000000a  00000202  00000202  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec5          000005c4  00000000  00000000  000002de  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      00000020  00000000  00000000  000008a2  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

UserDB.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000164  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         00000c78  00000164  00000164  00000240  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  00000ddc  00000ddc  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec11         00001b48  00000000  00000000  00000eb8  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      000000b0  00000000  00000000  00002a00  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

Util.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000214  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         000015ac  00000214  00000214  000002f0  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          0000000c  000017c0  000017c0  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec7          00002fd6  00000000  00000000  0000189c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      00000068  00000000  00000000  00004872  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

List.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000356  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         00000860  00000356  00000356  00000432  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  00000bb6  00000bb6  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec8          000014ba  00000000  00000000  00000c92  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      000000b0  00000000  00000000  0000214c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA

Record.o:     file format coff-m68k

Sections:
Idx Name          Size      VMA       LMA       File off  Algn
  0 .text         00000290  00000000  00000000  000000dc  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  1 .data         000005f0  00000290  00000290  0000036c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
  2 .bss          00000000  00000880  00000880  00000000  2**2
                  ALLOC, NEVER_LOAD
  3 sec6          00000bb8  00000000  00000000  0000095c  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, CODE
  4 .gcc_exc      00000098  00000000  00000000  00001514  2**2
                  CONTENTS, ALLOC, LOAD, RELOC, DATA
-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/

Reply via email to