You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
629 B
20 lines
629 B
//===- SystemUtils.cpp ----------------------------------------------------===//
|
|
//
|
|
// The MCLinker Project
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
#include "mcld/Config/Config.h"
|
|
#include "mcld/Support/SystemUtils.h"
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
// Non-member functions
|
|
#if defined(MCLD_ON_UNIX)
|
|
#include "Unix/System.inc"
|
|
#endif
|
|
#if defined(MCLD_ON_WIN32)
|
|
#include "Windows/System.inc"
|
|
#endif
|