summaryrefslogtreecommitdiffhomepage
path: root/mcc.cpp
blob: 7d94cf8441a636729f673abc4a475f510a683f7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//
// CLI
//

#include "cpp.h"
#include "elf.h"
#include "file.h"

#include <iostream>

using namespace std::string_literals;

namespace {

void usage() {
 std::cout << "Usage: mcc <translation_unit>" << std::endl;
}

}

int main(int argc, char* argv[])
{
 try {
  CPP cpp;

  if (argc != 2) {
   usage();
   return 1;
  }

  fs::path in_filename{argv[1]};
  fs::path out_filename{in_filename.parent_path() / in_filename.stem()};

  if (in_filename == out_filename)
   throw std::runtime_error("Bad output filename: "s + out_filename.generic_string());

  auto unit {File::getFile(in_filename)};

  std::string unit_string(reinterpret_cast<char*>(unit.data()), unit.size());

  cpp.compile(unit_string);

  Elf::Write(out_filename, cpp.getCode(), cpp.getData());
 } catch (const std::exception& ex) {
  std::cout << "Error: " << ex.what() << std::endl;
  return 1;
 }

 return 0;
}