File: gccbasedassembler.h

package info (click to toggle)
sasm 3.15.0%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 2,328 kB
  • sloc: cpp: 7,398; pascal: 1,596; asm: 226; ansic: 81; makefile: 19
file content (15 lines) | stat: -rw-r--r-- 325 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef GCCBASEDASSEMBLER_H
#define GCCBASEDASSEMBLER_H
#include "assembler.h"

class GccBasedAssembler : public Assembler
{
public:
    explicit GccBasedAssembler(bool x86, QObject *parent = 0);
    QString getLinkerPath();
    QString getLinkerOptions();
private:
    bool m_isPieEnabled;
};

#endif // GCCBASEDASSEMBLER_H