diff options
author | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-09-14 17:20:30 +0000 |
---|---|---|
committer | Jonathan Peyton <jonathan.l.peyton@intel.com> | 2015-09-14 17:20:30 +0000 |
commit | 8977618773da541b98c7b94ff9b8fb19e89a50a3 (patch) | |
tree | 7b89cd582a6e01c6a84e5d3f3ea90cc04c5769ac /openmp/runtime/tools/linux.inc | |
parent | 2c007d050aad89d444c465de5670f08dd90d8c21 (diff) | |
download | bcm5719-llvm-8977618773da541b98c7b94ff9b8fb19e89a50a3.tar.gz bcm5719-llvm-8977618773da541b98c7b94ff9b8fb19e89a50a3.zip |
Removing the Makefile/Perl build system.
This change deletes the Makefile+Perl build system and all files used by it
which aren't used by the CMake build system. This included many Perl files,
*.mk files, iomp* files. This change also updates the README's and
index.html to instruct the user to use the CMake build system. All mentioning
of the Perl+Makefile based system are removed.
Differential Revision: http://reviews.llvm.org/D12331
llvm-svn: 247583
Diffstat (limited to 'openmp/runtime/tools/linux.inc')
-rw-r--r-- | openmp/runtime/tools/linux.inc | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/openmp/runtime/tools/linux.inc b/openmp/runtime/tools/linux.inc deleted file mode 100644 index 7ad2512466f..00000000000 --- a/openmp/runtime/tools/linux.inc +++ /dev/null @@ -1,35 +0,0 @@ -# -#//===----------------------------------------------------------------------===// -#// -#// The LLVM Compiler Infrastructure -#// -#// This file is dual licensed under the MIT and the University of Illinois Open -#// Source Licenses. See LICENSE.txt for details. -#// -#//===----------------------------------------------------------------------===// -# - -####### Detections and Commands ############################################### - -ifndef arch - uname_m:=$(shell uname -m) - ifeq ($(uname_m),i686) - export arch:=32 - endif - ifeq ($(uname_m),x86_64) - export arch:=32e - endif - ifndef arch - export arch:=$(uname_m) - endif -endif - -CMD=sh -c -CWD=$(shell pwd) -CP=cp -RM?=rm -f -RMR?=rm -rf -RD?=rmdir -MD?=mkdir -p -NUL= /dev/null -SLASH=/ |