-
Notifications
You must be signed in to change notification settings - Fork 14
/
LIB.txt
33 lines (17 loc) · 785 Bytes
/
LIB.txt
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
How to compile DLL in MSVC environment
======================================
1. Compile with 'nmake -f Makefile.msvc'
2. Copy libdasm.dll to system directory
3. Copy libdasm.lib to your LIB path
4. Copy libdasm.h to your INCLUDE path
Prebuilt copy of libdasm (MSVC6) is included in bin directory.
How to compile library in Unix environment
==========================================
1. Edit Makefile. You may want to check out variables CC
and the installation path PREFIX. If you plan to use dynamic
library (libdasm.so), you may need to add /usr/local/lib
(or whatever you defined as PREFIX) in the linker cache path.
This is usually in /etc/ld.so.conf on Linux systems.
2. Compile with 'make'
3. Install with 'make install'
4. Rebuild your linker cache (or reboot)