Skip to content

Latest commit

 

History

History
133 lines (93 loc) · 5.33 KB

INSTALL

File metadata and controls

133 lines (93 loc) · 5.33 KB
 
May 10, 2002
May 10, 2002
1
Jun 11, 2002
Jun 11, 2002
2
3
The latest PhysicsFS information and releases can be found at:
http://icculus.org/physfs/
May 10, 2002
May 10, 2002
4
Apr 24, 2002
Apr 24, 2002
5
Building is (ahem) very easy.
Jul 28, 2001
Jul 28, 2001
6
Aug 23, 2001
Aug 23, 2001
7
8
ALL PLATFORMS:
Sep 2, 2001
Sep 2, 2001
9
Aug 23, 2001
Aug 23, 2001
10
11
12
Please understand your rights and mine: read the text file LICENSE in the root
of the source tree. If you can't abide by it, delete this source tree now.
Jun 11, 2002
Jun 11, 2002
13
14
15
16
17
If you've got Doxygen (http://www.doxygen.org/) installed, you can run it
without any command line arguments in the root of the source tree to generate
the API reference. This is optional. You can browse the API docs online
here: http://icculus.org/physfs/docs/
Aug 23, 2001
Aug 23, 2001
18
19
Aug 30, 2002
Aug 30, 2002
20
UNIX:
May 24, 2002
May 24, 2002
21
(If you got this code from CVS, run "./bootstrap" first.)
Jul 28, 2001
Jul 28, 2001
22
May 24, 2002
May 24, 2002
23
24
25
Run ./configure --help and see what features can be optionally enabled or
disabled. "./configure" does its best to pick optimal defaults for your
platform.
Jul 28, 2001
Jul 28, 2001
26
May 24, 2002
May 24, 2002
27
28
29
30
Run "make".
As root, run "make install".
If you get sick of the library, run "make uninstall" as root and it will
remove all traces of the library from the system paths.
Jul 28, 2001
Jul 28, 2001
31
Aug 30, 2002
Aug 30, 2002
32
33
34
Primary Unix development is done with GNU/Linux, but PhysicsFS is known to
work out of the box with several flavors of Unix. It it doesn't work, patches
to get it running can be sent to icculus@clutteredmind.org.
Jun 11, 2002
Jun 11, 2002
35
36
Aug 30, 2002
Aug 30, 2002
37
38
39
40
41
42
43
BeOS:
Use the "Unix" instructions, above.
AtheOS:
Use the "Unix" instructions, above.
Aug 23, 2001
Aug 23, 2001
44
45
WIN32:
Jun 11, 2002
Jun 11, 2002
46
47
48
If building with CygWin, mingw32 or something else that uses the GNU
toolchain, follow the Unix instructions, above.
Aug 30, 2002
Aug 30, 2002
49
50
51
52
53
54
55
56
If you're using Visual C++ 6, point it at "physfs.dsp" in the root of the
source tree, and build. This will produce a "physfs.dll" and "physfs.lib"
(shared library and import lib, respectively) in either a "Debug" or
"Release" directory, depending on what configuration you chose to build.
After building the lib, you can make sure it works by building the
"test_physfs.dsp" project file, which will create "test_physfs.exe" in
"Debug" or "Release". This EXE is linked against the DLL you built
previously.
Jun 11, 2002
Jun 11, 2002
57
Aug 9, 2003
Aug 9, 2003
58
59
60
61
62
63
64
If you're using Visual C++ 6 and want to generate a static LIB file, point
it at "physfs_static.dsp" in the root of the source tree and build. This
will produce a "physfs_static.lib" in either a "physfs_static_debug"
or a "physfs_static_release" directory, depending on what configuration
you chose to build. NOPE: "test_physfs.dsp" does not work with the
statically linked build.
Aug 30, 2002
Aug 30, 2002
65
66
Visual Studio.NET users should do the same thing, but use the "physfs.vcproj"
and "test_physfs.vcproj" project files instead.
Jun 11, 2002
Jun 11, 2002
67
Aug 9, 2003
Aug 9, 2003
68
69
70
71
72
NOTE: to change build options such as which drivers are loaded (ZIP, QPAK,
etc.) modify the appropriate manifest constants under the Project Settings.
By default the LIB version supports all drivers, but the DLL build does
not support MVL or HOG file formats.
Jun 11, 2002
Jun 11, 2002
73
If you're using another compiler, send me a patch when you get it working. :)
Apr 24, 2002
Apr 24, 2002
74
75
76
77
No one's tried building this for a WinCE (PocketPC) platform, but it may or
may not work. Patches are welcome.
Sep 2, 2001
Sep 2, 2001
78
79
80
If someone is willing to maintain prebuilt PhysicsFS DLLs, I'd like to hear
from you; send an email to icculus@clutteredmind.org.
Apr 6, 2002
Apr 6, 2002
81
MACOS 8/9:
Jun 11, 2002
Jun 11, 2002
82
83
84
85
86
87
88
89
90
91
Double-click on "CWProjects.sit" in the root of the source tree. This will
unpack into a folder called "Mac Classic Support", which has CodeWarrior 6
project files.
Point CodeWarrior at "physfs.mcp" in that new folder, and build. This will
produce a "PhysicsFS" or "PhysicsFS Debug" shared library, depending on what
configuration you chose to build. After building the lib, you can make sure
it works by building the "test_physfs.mcp" project file, which will create
"test_physfs" or "test_physfs Debug". These binaries are linked against the
DLLs you built previously.
Apr 6, 2002
Apr 6, 2002
92
93
94
95
96
If someone is willing to maintain prebuilt PhysicsFS Shared Libraries for
the Mac, I'd like to hear from you; send an email to icculus@clutteredmind.org.
Jun 11, 2002
Jun 11, 2002
97
98
99
100
101
102
MACOS X:
You (currently) need to use the freeware Apple Developer Tools, which are
based on the GNU toolchain. Fire up a terminal and run "cc"...if this reports
"no input files" then you've got the tools installed.
Aug 30, 2002
Aug 30, 2002
103
Follow the Unix directions, above (configure, make, make install).
Jun 11, 2002
Jun 11, 2002
104
105
106
107
108
If someone is willing to maintain prebuilt PhysicsFS Shared Libraries for
MacOS X, I'd like to hear from you; send an email to icculus@clutteredmind.org.
Aug 30, 2002
Aug 30, 2002
109
110
111
112
113
114
115
116
117
118
119
120
121
OS/2:
You need EMX installed. I tried this on a stock Warp 4 install, no fixpaks.
I used the latest EMX and patches (which are several years old now). You need
to install link386.exe (Selective Install, "link object modules" option). Once
EMX is installed correctly, unpack the source to PhysicsFS and run the script
file "makeos2.cmd". I know this isn't ideal, but I wanted to have this build
without users having to hunt down a "make" program (While several exist, EMX
doesn't come with one). If someone wants to hack some REXX to make this a bit
more piccky about recompiling, I'll accept the patch.
If someone is willing to maintain prebuilt PhysicsFS Shared Libraries for
OS/2, I'd like to hear from you; send an email to icculus@clutteredmind.org.
Jun 11, 2002
Jun 11, 2002
122
Apr 6, 2002
Apr 6, 2002
123
OTHER PLATFORMS:
Jun 11, 2002
Jun 11, 2002
124
125
Many Unix-like platforms might "just work" with the GNU autoconf tools. Some
of these platforms are known to have worked at one time, but have not been
Aug 30, 2002
Aug 30, 2002
126
127
128
129
130
heavily tested, if tested at all. PhysicsFS is, as far as we know, 64-bit and
byteorder clean, and is known to compile on several compilers across many
platforms. To implement a new platform or archiver, please read the
heavily-commented physfs_internal.h and look in the platform/ and archiver/
directories for examples.
Apr 6, 2002
Apr 6, 2002
131
132
--ryan. (icculus@clutteredmind.org)