Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
clean-ide
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
clean-and-itasks
clean-ide
Commits
1c10217c
Commit
1c10217c
authored
Sep 13, 2017
by
John van Groningen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix heap and stack sizes for 64 bit options file, only the least significant 32 bits were written
parent
5263a826
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
11 deletions
+11
-11
Interfaces/LinkerInterface/WriteOptionsFile.icl
Interfaces/LinkerInterface/WriteOptionsFile.icl
+7
-7
MacOSX/PmCleanSystem.icl
MacOSX/PmCleanSystem.icl
+2
-2
Unix/PmCleanSystem.icl
Unix/PmCleanSystem.icl
+2
-2
No files found.
Interfaces/LinkerInterface/WriteOptionsFile.icl
View file @
1c10217c
...
...
@@ -431,17 +431,17 @@ write_options_file_64 options_file_name flags heap_size stack_size initial_heap_
// data section offset 140
FWI
heap_size
FWI
0
FWI
(
heap_size
>>
32
)
FWI
stack_size
FWI
(
stack_size
>>
32
)
FWI
flags
FWI
0
FWI
flags
FWI
0
FWI
initial_heap_size
FWI
0
FWI
heap_size_multiple
FWI
initial_heap_size
FWI
(
initial_heap_size
>>
32
)
FWI
heap_size_multiple
FWI
0
FWI
min_write_heap_size
FWI
0
FWI
(
min_write_heap_size
>>
32
)
// symbol table offset
// .file at 188
...
...
MacOSX/PmCleanSystem.icl
View file @
1c10217c
...
...
@@ -947,8 +947,8 @@ write_options_file options_file_name flags heap_size stack_size initial_heap_siz
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
0x00000000
FWI
flags
FWI
0x00000000
FWI
initial_heap_size
FWI
0x00000000
FWI
heap_size
FWI
0x00000000
FWI
stack_size
FWI
0x00000000
FWI
flags
FWI
0x00000000
FWI
initial_heap_size
FWI
(
initial_heap_size
>>
32
)
FWI
heap_size
FWI
(
heap_size
>>
32
)
FWI
stack_size
FWI
(
stack_size
>>
32
)
FWI
heap_size_multiple
FWI
0x00000000
FWI
0x00000026
FWI
0x0000020f
FWI
0x00000018
FWI
0x00000000
FWI
0x00000001
FWI
0x0000020f
FWI
0x00000000
FWI
0x00000000
FWI
0x0000001b
FWI
0x0000020f
FWI
...
...
Unix/PmCleanSystem.icl
View file @
1c10217c
...
...
@@ -966,9 +966,9 @@ write_options_file options_file_name flags heap_size stack_size initial_heap_siz
0x00000000
FWI
0x00000000
FWI
0x00000094
FWI
0x00000000
FWI
0x00000000
FWI
0x00000040
FWI
0x00400000
FWI
0x00040007
FWI
heap_size
FWI
0x00000000
FWI
stack_size
FWI
0x00000000
FWI
heap_size
FWI
(
heap_size
>>
32
)
FWI
stack_size
FWI
(
stack_size
>>
32
)
FWI
flags
FWI
0x00000000
FWI
heap_size_multiple
FWI
00
FWI
initial_heap_size
FWI
0x0
FWI
initial_heap_size
FWI
(
initial_heap_size
>>
32
)
FWI
0x79732e00
FWI
0x6261746d
FWI
0x74732e00
FWI
0x62617472
FWI
0x68732e00
FWI
0x74727473
FWI
0x2e006261
FWI
0x74786574
FWI
0x61642e00
FWI
0x2e006174
FWI
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment