1 Commits
Author SHA1 Message Date
SoraKatadzuma 9f43dcc9f2 Fixed includes smh 2026-08-07 13:38:58 -05:00
8 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
name: config
gpid: malunal
semv: 1.0.0
semv: 1.0.1
targets:
- name: malunal.config
+1 -1
View File
@@ -12,7 +12,7 @@
#if defined(__clang__)
# error "Clang unsupported at this time"
#elif defined(__GNUC__)
# define MALUNAL_COMPILER_CONFIG "./config/compiler/gcc.hpp"
# define MALUNAL_COMPILER_CONFIG "./config/compiler/gcc.h"
#elif defined(_MSC_VER)
# error "MSVC unsupported at this time"
#else
+3 -3
View File
@@ -1,5 +1,5 @@
/**
* @file platform.hpp
* @file platform.h
* @brief Selects a platform specific header based on defined macros of that
* platform, which includes settings for that platform.
* @author John Christman (sorakatadzuma@gmail.com)
@@ -13,11 +13,11 @@
defined(__linux__) || \
defined(__GNU__) || \
defined(__GLIBC__)
# define MALUNAL_PLATFORM_CONFIG "./config/platform/linux.hpp"
# define MALUNAL_PLATFORM_CONFIG "./config/platform/linux.h"
#elif defined(WIN32) || \
defined(_WIN32) || \
defined(__WIN32__)
# define MALUNAL_PLATFORM_CONFIG "./config/platform/windows.hpp"
# define MALUNAL_PLATFORM_CONFIG "./config/platform/windows.h"
#else
# error "Unsupported platform"
#endif // Platform selection.
+1 -1
View File
@@ -4,7 +4,7 @@
* @author John Christman (sorakatadzuma@gmail.com)
* @copyright Malunal Studios, LLC.
*/
#include "common.hpp"
#include "common.h"
/**
+1 -1
View File
@@ -4,7 +4,7 @@
* @author John Christman (sorakatadzuma@gmail.com)
* @copyright Malunal Studios, LLC.
*/
#include "common.hpp"
#include "common.h"
/**
+1 -1
View File
@@ -11,7 +11,7 @@
#if defined(__i386__) || defined(__intel__) || defined(_M_IX86)
# define MALUNAL_PROCESSOR_CONFIG "./config/processor/x86.h"
#elif defined(__x86_64__) || defined(_AMD64_) || defined(_M_AMD64)
# define MALUNAL_PROCESSOR_CONFIG "./config/processor/x64.hpp"
# define MALUNAL_PROCESSOR_CONFIG "./config/processor/x64.h"
#else
# error Unknown processor.
# error Unknown endianess.
+1 -1
View File
@@ -1,5 +1,5 @@
/**
* @file x86.hpp
* @file x86.h
* @brief Contains the configuration for x86 based processors.
* @author John Christman <sorakatadzuma@gmail.com>
* @copyright 2024-2025 Malunal Studios, LLC.
+1 -1
View File
@@ -1,5 +1,5 @@
/**
* @file x86.hpp
* @file x86.h
* @brief Contains the configuration for x86 based processors.
* @author John Christman <sorakatadzuma@gmail.com>
* @copyright 2024-2025 Malunal Studios, LLC.