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
B
buildsupport
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TASTE
buildsupport
Commits
b0bcca04
Commit
b0bcca04
authored
Sep 08, 2017
by
Maxime Perrotin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merge latest changes from master
parent
597f3103
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
5 deletions
+13
-5
ada/buildsupport.adb
ada/buildsupport.adb
+9
-3
buildsupport.gpr
buildsupport.gpr
+4
-2
No files found.
ada/buildsupport.adb
View file @
b0bcca04
...
...
@@ -1053,13 +1053,12 @@ procedure BuildSupport is
Find_Connected_Bus
(
Tmp_CI
,
Accessed_Bus
,
Accessed_Port
);
if
Accessed_Bus
/=
No_Node
and
then
Accessed_Port
/=
No_Node
Accessed_Port
/=
No_Node
and
then
Associated_Processor_Name
/=
No_Name
then
Accessed_Bus_Name
:=
Name
(
Identifier
(
Accessed_Bus
));
Accessed_Port_Name
:=
Name
(
Identifier
(
Accessed_Port
));
end
if
;
if
Associated_Processor_Name
/=
No_Name
then
C_New_Device
(
Get_Name_String
(
Name
(
Identifier
(
Processes
))),
Get_Name_String
...
...
@@ -1081,6 +1080,13 @@ procedure BuildSupport is
Get_Name_String
(
Device_ASN1_Module
),
Device_ASN1_Module_Len
);
C_End_Device
;
else
Exit_On_Error
(
True
,
"[ERROR] In your deployment view, check the connection of"
&
" this driver: "
&
Get_Name_String
(
Name
(
Identifier
(
Processes
)))
&
" - in processor "
&
Get_Name_String
(
Associated_Processor_Name
));
end
if
;
end
;
end
if
;
...
...
buildsupport.gpr
View file @
b0bcca04
...
...
@@ -27,7 +27,8 @@ project BuildSupport is
"-gnatwa"
,
"-gnatoa"
,
"-gnatg"
,
"-fstack-check"
);
"-fstack-check"
,
"-no-pie"
);
for
Default_Switches
(
"C"
)
use
(
"-g"
,
...
...
@@ -53,7 +54,8 @@ project BuildSupport is
"-Wno-error=old-style-cast"
,
"-Wundef"
,
"-std=c11"
,
"-pedantic"
);
"-pedantic"
,
"-no-pie"
);
end
Compiler
;
end
BuildSupport
;
...
...
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