File: make.h

package info (click to toggle)
icecc 1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,520 kB
  • sloc: cpp: 14,058; sh: 3,006; ansic: 767; xml: 744; makefile: 231; asm: 2
file content (15 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef MAKE_H
#define MAKE_H

// some includes that'll make the compile take at least a little time
#include <iostream>
#include <iomanip>
#include <vector>
#include <map>
#include <string>

// This is to prevent scheduler from ignoring stats for the compile job,
// as jobs with too small .o result are ignored in add_job_stats().
static volatile const int largedata[ 16384 ] = { 1, 2 };

#endif