forked from wjp/idados
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
31 lines (18 loc) · 848 Bytes
/
BUILD
File metadata and controls
31 lines (18 loc) · 848 Bytes
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
To build the plugin for Linux:
export IDA=/path/to/idasdk64/
export __LINUX__=1
perl $IDA/bin/idamake.pl
To build the plugin for Mac OS X:
export IDA=/path/to/idasdk64/
export __MAC__=1
perl $IDA/bin/idamake.pl
To build dosbox on a 32-bit system:
./autogen.sh
./configure --enable-debug=ida32 --with-ida-sdk=$IDA --with-ida-plugin=/path/to/idaplugin
To build a 32-bit dosbox on a 64-bit Linux system:
./autogen.sh
CC="cc -m32" CXX="c++ -m32" ./configure --enable-debug=ida32 --with-ida-sdk=$IDA --with-ida-plugin=/path/to/idaplugin --host=i686-pc-linux-gnu
To build a 32-bit dosbox and plugin on a 64-bit Mac OS X system:
(The specific darwin release chosen shouldn't matter.)
./autogen.sh
CC="cc -m32" CXX="c++ -m32" ./configure --enable-debug=ida32 --with-ida-sdk=$IDA --with-ida-plugin=/path/to/idaplugin --host=i686-apple-darwin12