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
8dfd23ed
Commit
8dfd23ed
authored
Apr 29, 2003
by
Diederik van Arkel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove 'add_carb' option;
parent
94a3d69a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
9 deletions
+11
-9
Ide/PmDialogues.icl
Ide/PmDialogues.icl
+2
-2
Pm/PmFiles.icl
Pm/PmFiles.icl
+1
-1
Pm/PmProject.icl
Pm/PmProject.icl
+5
-3
Pm/PmTypes.dcl
Pm/PmTypes.dcl
+1
-1
Pm/PmTypes.icl
Pm/PmTypes.icl
+2
-2
No files found.
Ide/PmDialogues.icl
View file @
8dfd23ed
...
...
@@ -329,8 +329,8 @@ where
,
(
"Include Resource Section"
,
Nothing
,
toMark
lo
.
link_resources
,
noPS
(\
ls
->{
ls
&
lo
=
{
ls
.
lo
&
link_resources
=
not
ls
.
lo
.
link_resources
}}))
]
// macOnly
[
(
"Add 'carb' Resource"
,
Nothing
,
toMark
lo
.
add_carb_resource
,
noPS
(\
ls
->
{
ls
&
lo
.
add_carb_resource
=
not
ls
.
lo
.
add_carb_resource
}))
]
//
[ ("Add 'carb' Resource" ,Nothing,toMark lo.add_carb_resource,noPS (\ls -> {ls & lo.add_carb_resource = not ls.lo.add_carb_resource}))
[
]
]
(
Columns
1
)
[
ControlPos
(
Left
,
zero
)
]
...
...
Pm/PmFiles.icl
View file @
8dfd23ed
...
...
@@ -278,7 +278,7 @@ LinkOptionsTable =
,
SimpleOption
"ResourceSource"
(\
a
->
a
.
resource_source
)
(\
v
a
->{
a
&
resource_source
=
v
})
,
SimpleOption
"GenerateDLL"
(\
a
->
a
.
generate_dll
)
(\
v
a
->{
a
&
generate_dll
=
v
})
,
SimpleOption
"ExportedNames"
(\
a
->
a
.
dll_export_list_name
)
(\
v
a
->{
a
&
dll_export_list_name
=
v
})
,
SimpleOption
"AddCarbResource"
(\
a
->
a
.
add_carb_resource
)
(\
v
a
->{
a
&
add_carb_resource
=
v
})
//
, SimpleOption "AddCarbResource" (\a->a.add_carb_resource) (\v a->{a & add_carb_resource = v})
}
EditWdOptionsTable
::
OptionsTable
EditWdOptions
...
...
Pm/PmProject.icl
View file @
8dfd23ed
...
...
@@ -337,8 +337,7 @@ eqLinkOpts lo1 lo2 =
EQStrings
(
SortStrings
lo1
.
extraObjectModules
)
(
SortStrings
lo2
.
extraObjectModules
)
&&
EQStrings
(
SortStrings
lo1
.
libraries
)
(
SortStrings
lo2
.
libraries
)
&&
lo1
.
generate_dll
==
lo2
.
generate_dll
&&
lo1
.
dll_export_list_name
==
lo2
.
dll_export_list_name
&&
lo1
.
add_carb_resource
==
lo2
.
add_carb_resource
lo1
.
dll_export_list_name
==
lo2
.
dll_export_list_name
PR_SetLinkOptions
::
!
Project
!
LinkOptions
->
Project
;
...
...
@@ -771,7 +770,10 @@ PR_GetTarget :: !Project -> String
PR_GetTarget
{
Project
|
target
}
=
target
PR_SetTarget
::
!
String
!
Project
->
Project
PR_SetTarget
target
project
=
{
Project
|
project
&
target
=
target
}
PR_SetTarget
target
project
|
target
==
project
.
Project
.
target
=
project
=
{
Project
|
project
&
target
=
target
,
exec
=
False
,
saved
=
False
}
//--
...
...
Pm/PmTypes.dcl
View file @
8dfd23ed
...
...
@@ -34,7 +34,7 @@ instance fromString Processor
,
generate_dll
::
!
Bool
,
dll_export_list_name
::
!
String
,
add_carb_resource
::
!
Bool
// Mac-only!
//
, add_carb_resource :: !Bool // Mac-only!
}
DefaultLinkOptions
::
LinkOptions
...
...
Pm/PmTypes.icl
View file @
8dfd23ed
...
...
@@ -134,7 +134,7 @@ where
,
generate_dll
::
!
Bool
,
dll_export_list_name
::
!
String
,
add_carb_resource
::
!
Bool
// Mac-only!
//
, add_carb_resource :: !Bool // Mac-only!
}
/*
instance == LinkOptions // do we need to check resource linking flags???
...
...
@@ -163,7 +163,7 @@ DefaultLinkOptions =
,
generate_dll
=
False
,
dll_export_list_name
=
""
,
add_carb_resource
=
False
// Clean2 ide targets Carbon?!
//
, add_carb_resource = False // Clean2 ide targets Carbon?!
}
::
LinkMethod
...
...
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