+2017-11-09 Jerome Lambourg <lambourg@adacore.com>
+
+ * gcc-interface/Makefile.in: Add rules to build aarch64-qnx runtimes.
+
+2017-11-09 Hristian Kirtchev <kirtchev@adacore.com>
+
+ * gcc-interface/trans.c (gnat_to_gnu): Add processing for
+ N_Variable_Reference_Marker nodes.
+
2017-11-09 Ed Schonberg <schonberg@adacore.com>
* sem_ch12.adb (Analyze_Generic_Package_Declaration): Handle properly
LIBRARY_VERSION := $(LIB_VERSION)
endif
+# AARCH64 QNX
+ifeq ($(strip $(filter-out aarch64 %qnx,$(target_cpu) $(target_os))),)
+ LIBGNAT_TARGET_PAIRS = \
+ a-intnam.ads<libgnarl/a-intnam__qnx.ads \
+ s-inmaop.adb<libgnarl/s-inmaop__posix.adb \
+ s-intman.adb<libgnarl/s-intman__qnx.adb \
+ s-osinte.adb<libgnarl/s-osinte__qnx.adb \
+ s-osinte.ads<libgnarl/s-osinte__qnx.ads \
+ s-osprim.adb<libgnat/s-osprim__posix.adb \
+ s-qnx.ads<libgnarl/s-qnx.ads \
+ s-taprop.adb<libgnarl/s-taprop__qnx.adb \
+ s-taspri.ads<libgnarl/s-taspri__posix.ads \
+ s-tpopsp.adb<libgnarl/s-tpopsp__posix-foreign.adb \
+ $(ATOMICS_TARGET_PAIRS) \
+ $(ATOMICS_BUILTINS_TARGET_PAIRS) \
+ system.ads<libgnat/system-qnx-aarch64.ads
+
+ TOOLS_TARGET_PAIRS = indepsw.adb<indepsw-gnu.adb
+
+ EXTRA_GNATRTL_TASKING_OBJS=s-qnx.o
+ EXTRA_LIBGNAT_OBJS+=sigtramp-qnx.o
+ EXTRA_LIBGNAT_SRCS+=sigtramp.h
+ EH_MECHANISM=-gcc
+
+ SO_OPTS= -shared-libgcc -Wl,-soname,
+ MISCLIB= - lsocket
+ THREADSLIB =
+ GNATLIB_SHARED = gnatlib-shared-dual
+ LIBRARY_VERSION := $(LIB_VERSION)
+endif
+
# Sparc Solaris
ifeq ($(strip $(filter-out sparc% sun solaris%,$(target_cpu) $(target_vendor) $(target_os))),)
LIBGNAT_TARGET_PAIRS = \
/* Added Nodes */
/****************/
- /* Call markers are created by the ABE mechanism to capture the target of
- a call along with other elaboration-related attributes which are either
- unavailable of expensive to recompute. Call markers do not have static
- and runtime semantics, and should be ignored. */
+ /* Markers are created by the ABE mechanism to capture information which
+ is either unavailable of expensive to recompute. Markers do not have
+ and runtime semantics, and should be ignored. */
case N_Call_Marker:
+ case N_Variable_Reference_Marker:
gnu_result = alloc_stmt_list ();
break;