mirror of
https://github.com/OpenMW/openmw.git
synced 2025-06-01 21:41:34 +00:00
minor changes
git-svn-id: https://openmw.svn.sourceforge.net/svnroot/openmw/trunk@32 ea6a568a-9f4f-0410-981a-c910a81bb256
This commit is contained in:
parent
33d11a733c
commit
78229cca07
2 changed files with 7 additions and 4 deletions
|
@ -77,7 +77,11 @@ http://sourceforge.net/projects/dgcc
|
||||||
If you want to use DMD instead, it can be found at:
|
If you want to use DMD instead, it can be found at:
|
||||||
http://digitalmars.com/d/1.0/dmd-linux.html
|
http://digitalmars.com/d/1.0/dmd-linux.html
|
||||||
|
|
||||||
Note that DMD is only available on 32 bit Linux - other operating
|
Note that the DMD unstable branch (2.000 and up) will NOT currently
|
||||||
|
work with OpenMW. Use the stable branch (1.x) instead. The latest
|
||||||
|
version known to work is DMD 1.031, so I recommend that.
|
||||||
|
|
||||||
|
Also note that DMD is only available on 32 bit Linux - other operating
|
||||||
systems or architectures will have to use GDC. However GDC might be
|
systems or architectures will have to use GDC. However GDC might be
|
||||||
unstable on these platforms as well, even if it runs.
|
unstable on these platforms as well, even if it runs.
|
||||||
|
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -1,9 +1,9 @@
|
||||||
# Designed for GNU Make
|
# Designed for GNU Make
|
||||||
|
|
||||||
# Compiler settings
|
# Compiler settings
|
||||||
CXX?= g++
|
|
||||||
CXXFLAGS?= -Wall -g
|
CXXFLAGS?= -Wall -g
|
||||||
DMD=gdmd -version=Posix
|
DMD=gdmd -version=Posix
|
||||||
|
#DMD=dmd -version=Posix
|
||||||
|
|
||||||
# Some extra flags for niftool and bsatool
|
# Some extra flags for niftool and bsatool
|
||||||
NIFFLAGS=-debug=warnstd -debug=check -debug=statecheck -debug=strict -debug=verbose
|
NIFFLAGS=-debug=warnstd -debug=check -debug=statecheck -debug=strict -debug=verbose
|
||||||
|
@ -20,8 +20,7 @@ AVGCC=$(CXX) $(CXXFLAGS) $(CF_FFMPEG)
|
||||||
# passed to the compiler, the rest are dependencies.
|
# passed to the compiler, the rest are dependencies.
|
||||||
ogre_cpp=ogre framelistener interface overlay bsaarchive
|
ogre_cpp=ogre framelistener interface overlay bsaarchive
|
||||||
|
|
||||||
# FFmpeg files, in the form sound/cpp_X.cpp. Only the first file is
|
# FFmpeg files, in the form sound/cpp_X.cpp.
|
||||||
# passed to the compiler, the rest are dependencies.
|
|
||||||
avcodec_cpp=avcodec
|
avcodec_cpp=avcodec
|
||||||
|
|
||||||
## No modifications should be required below this line. ##
|
## No modifications should be required below this line. ##
|
||||||
|
|
Loading…
Reference in a new issue