Changeset 947
- Timestamp:
- Sep 11, 2011, 12:37:15 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 5 added
- 3 edited
- 3 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/build/bitten.xml
r945 r947 6 6 </step> 7 7 <step id="bootstrap" description="Bootstrap build system"> 8 <sh:exec file=" sh" args="-c ./build/lol-buildbootstrap ${platform}"/>8 <sh:exec file="./build/lol-build" args="bootstrap ${platform}"/> 9 9 </step> 10 10 <step id="configure" description="Configure tree"> 11 <sh:exec file=" sh" args="-c ./build/lol-buildconfigure ${platform}"/>11 <sh:exec file="./build/lol-build" args="configure ${platform}"/> 12 12 </step> 13 13 <step id="build" description="Build tree"> 14 <sh:exec file=" sh" args="-c ./build/lol-buildbuild ${platform}"/>14 <sh:exec file="./build/lol-build" args="build ${platform}"/> 15 15 </step> 16 <step id=" test" description="Run tests">17 <sh:exec file=" sh" args="-c ./build/lol-build test${platform}"/>16 <step id="check" description="Run tests"> 17 <sh:exec file="./build/lol-build" args="check ${platform}"/> 18 18 </step> 19 19 <step id="clean" description="Clean tree"> 20 <sh:exec file=" sh" args="-c ./build/lol-buildclean ${platform}"/>20 <sh:exec file="./build/lol-build" args="clean ${platform}"/> 21 21 </step> 22 22 </build> -
trunk/build/lol-build
r946 r947 71 71 fi 72 72 LDFLAGS="$LDFLAGS -L$PWD/contrib/glew-1.7.0/lib/i686-w64-mingw32" 73 LDFLAGS="$LDFLAGS -L$PWD/contrib/sdl-1.2.14/lib/i686-w64-mingw32" 73 74 ;; 74 75 windows-amd64) … … 83 84 fi 84 85 LDFLAGS="$LDFLAGS -L$PWD/contrib/glew-1.7.0/lib/x86_64-w64-mingw32" 86 LDFLAGS="$LDFLAGS -L$PWD/contrib/sdl-1.2.14/lib/x86_64-w64-mingw32" 85 87 ;; 86 88 esac … … 111 113 CPPFLAGS="$CPPFLAGS -I$PWD/contrib/gtk-2.22.1/include/atk-1.0" 112 114 CPPFLAGS="$CPPFLAGS -I$PWD/contrib/gtkglarea-2.0.1/include" 113 LDFLAGS="$LDFLAGS -L$PWD/contrib/sdl-1.2.14/lib"114 115 LDFLAGS="$LDFLAGS -L$PWD/contrib/sdl-image-1.2.10/lib" 115 116 LDFLAGS="$LDFLAGS -L$PWD/contrib/sdl-mixer-1.2.11/lib" -
trunk/contrib/NOTES
r944 r947 3 3 ##################### 4 4 5 5 6 Glew 6 7 ---- 7 8 8 Download page: http://sourceforge.net/projects/glew/files/glew /1.7.0/glew-1.7.0.tgz/download9 Download page: http://sourceforge.net/projects/glew/files/glew 9 10 10 11 - fix config/Makefile.linux-mingw32 and config/Makefile.linux-mingw64 to … … 21 22 - copy lib/*.a in the contrib directory as *.lib 22 23 24 25 SDL 26 --- 27 28 Download page: http://www.libsdl.org/release/ 29 30 Win32: 31 - just take the pre-compiled binaries from upstream 32 33 Win64: 34 - ./configure --host=x86_64-w64-mingw32 35 - deactivate NONAMELESSUNION in src/video/windx5/directx.h 36 - make -j6 37 - copy build/libSDLmain.a as SDLmain.lib 38 - copy build/.libs/libSDL.a as SDL.lib 39 - copy build/.libs/SDL.dll as SDL.dll 40 41 42 SDL_Image 43 --------- 44 45 Download page: http://www.libsdl.org/projects/SDL_image/release/ 46 47 Hard to do, requires libjpeg, libtiff, libpng, zlib... 48 49 50 SDL_Mixer 51 --------- 52 53 Download page: http://www.libsdl.org/projects/SDL_mixer/release/ 54 55 Hard to do, requires libogg, libvorbis, mikmod, libsmpeg... 56
Note: See TracChangeset
for help on using the changeset viewer.