forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add configure option to enable slave emulator
It takes as argument the target of the slave emulator (epiphany-elf by default).
- Loading branch information
Showing
8 changed files
with
247 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ | |
/config.log | ||
/config.status | ||
/config.h.in | ||
/info.mk |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# | ||
# %CopyrightBegin% | ||
# | ||
# Copyright Ericsson AB 1996-2015. All Rights Reserved. | ||
# | ||
# The contents of this file are subject to the Erlang Public License, | ||
# Version 1.1, (the "License"); you may not use this file except in | ||
# compliance with the License. You should have received a copy of the | ||
# Erlang Public License along with this software. If not, it can be | ||
# retrieved online at http://www.erlang.org/. | ||
# | ||
# Software distributed under the License is distributed on an "AS IS" | ||
# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See | ||
# the License for the specific language governing rights and limitations | ||
# under the License. | ||
# | ||
# %CopyrightEnd% | ||
# | ||
|
||
# This file is intended to be included by higher-level Makefiles that need to | ||
# cooperate with the slave emulator build process. | ||
|
||
SLAVE_TARGET=@TARGET@ | ||
SLAVE_EXECUTABLE=$(ERL_TOP)/bin/$(SLAVE_TARGET)/slave$(TF_MARKER) | ||
SLAVE_OBJDUMP=@OBJDUMP@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters