Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
TASTE
PolyORB-HI-C
Commits
809690e8
Commit
809690e8
authored
Feb 02, 2016
by
yoogx
Browse files
* Correct detection of compcert compiler, solve incorrect move of files
For issue
#10
parent
bc9572e2
Changes
1
Hide whitespace changes
Inline
Side-by-side
share/make/Makefile.common.in
View file @
809690e8
...
...
@@ -313,13 +313,10 @@ endif
ifeq
($(TARGET), compcert)
$(BINARY)
:
@
if
[
!
-f
ccomp
]
;
then
\
@
if
[
x
"
$(
shell
which ccomp
)
"
=
x
]
;
then
\
echo
"Compcert not installed, exiting"
;
\
else
\
$(MAKE)
generate-asn1-deployment compile-c-files compile-cpp-files compile-ada-files target-objects compile-po-hi
$(GENERATED_OBJS)
$(TARGET_OBJECTS)
;
\
for
v
in
$(USER_OBJS)
;
do
mv
../../
$$
v
.
;
done
;
\
mkdir
-p
drivers
;
\
for
v
in
$(PO_HI_OBJS)
;
do
mv
$(RUNTIME_PATH)
/src/
$$
v
$$
v
;
done
;
\
$(CC)
-o
$(BINARY)
$(EXTERNAL_OBJECTS)
$(PO_HI_OBJS)
$(GENERATED_OBJS)
$(USER_OBJS)
$(LDFLAGS)
;
\
fi
endif
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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