General Purpose library for Freestanding C++ and POSIX systems
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
285 B

  1. #pragma once
  2. #if defined(_M_IX86) or defined(__i386)
  3. #if __clang__
  4. #elif __GNUG__
  5. #endif // __clang__
  6. #elif defined(_M_X64) or defined(__amd64)
  7. #include "gp/system/platforms/gcc-x86_64.hpp"
  8. #if __clang__
  9. #elif __GNUG__
  10. #endif // __clang__
  11. #endif // CPU ARCHITECTURE