Changeset 21449 in webkit
- Timestamp:
- May 13, 2007, 10:13:20 PM (18 years ago)
- Location:
- branches/wx-port-alpha/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/wx-port-alpha/trunk/Bakefiles/presets.bkl
r21434 r21449 64 64 <if cond="FORMAT in ['msvc','msvs2005prj']"> 65 65 <sys-lib>jscore</sys-lib> 66 <sys-lib>winmm</sys-lib> <!-- for timeGetTime --> 66 67 <lib-path>$(WKOUTPUTDIR)</lib-path> 67 68 </if> -
branches/wx-port-alpha/trunk/JavaScriptCore/Makefile.vc
r21434 r21449 1 1 # ========================================================================= 2 2 # This makefile was generated by 3 # Bakefile 0.2.2 (http:// www.bakefile.org)3 # Bakefile 0.2.2 (http://bakefile.sourceforge.net) 4 4 # Do not modify, all changes will be overwritten! 5 5 # ========================================================================= … … 44 44 45 45 TESTKJS_CXXFLAGS = /MDd /DWIN32 /I$(WK_ROOT)\icu\include \ 46 /I$(WK_ROOT)\JavaScriptCore /I$(WK_ROOT)\JavaScriptCore\os-win32 /Zi \ 47 /D_DEBUG /Fd$(WKOUTPUTDIR)\testkjs.pdb /I. $(CPPFLAGS) $(CXXFLAGS) 46 /I$(WK_ROOT)\JavaScriptCore /I$(WK_ROOT)\JavaScriptCore\os-win32 \ 47 /I.\..\pthreads\include /Zi /D_DEBUG /Fd$(WKOUTPUTDIR)\testkjs.pdb /I. \ 48 $(CPPFLAGS) $(CXXFLAGS) 48 49 TESTKJS_OBJECTS = \ 49 50 obj-msvc\testkjs_testkjs.obj 50 TESTKJS_ODEP = $(WKOUTPUTDIR)\jscore.lib51 51 DFTABLES_CFLAGS = /MD /DWIN32 /I.\wtf $(CPPFLAGS) $(CFLAGS) 52 52 DFTABLES_OBJECTS = \ … … 162 162 -if exist $(WKOUTPUTDIR)\jscore.lib del $(WKOUTPUTDIR)\jscore.lib 163 163 164 $(WKOUTPUTDIR)\testkjs.exe: $(TESTKJS_OBJECTS) 165 link /NOLOGO /OUT:$@ $(LDFLAGS) /LIBPATH:$(WK_ROOT)\icu\lib /LIBPATH:$(WKOUTPUTDIR) / DEBUG @<<166 $(TESTKJS_OBJECTS) icuuc.lib icuin.lib jscore.lib 164 $(WKOUTPUTDIR)\testkjs.exe: $(TESTKJS_OBJECTS) $(WKOUTPUTDIR)\jscore.lib 165 link /NOLOGO /OUT:$@ $(LDFLAGS) /LIBPATH:$(WK_ROOT)\icu\lib /LIBPATH:$(WKOUTPUTDIR) /LIBPATH:$(WK_ROOT)\pthreads\lib /DEBUG @<< 166 $(TESTKJS_OBJECTS) icuuc.lib icuin.lib jscore.lib winmm.lib pthreadVC2.lib 167 167 << 168 168 … … 181 181 << 182 182 183 obj-msvc\testkjs_testkjs.obj: .\.\kjs\testkjs.cpp $(TESTKJS_ODEP)183 obj-msvc\testkjs_testkjs.obj: .\.\kjs\testkjs.cpp 184 184 $(CXX) /c /nologo /TP /Fo$@ $(TESTKJS_CXXFLAGS) $** 185 185 -
branches/wx-port-alpha/trunk/JavaScriptCore/jscore.bkl
r21434 r21449 97 97 </template> 98 98 99 <exe id="testkjs" template="icu,jscore ">99 <exe id="testkjs" template="icu,jscore,pthreads"> 100 100 <cxx-rtti>off</cxx-rtti> 101 101 <cxx-exceptions>off</cxx-exceptions> 102 102 <debug-info>on</debug-info> 103 < objects-depend>jscore</objects-depend>103 <depends>jscore</depends> 104 104 <include>$(SRCDIR)</include> 105 105 <dirname>$(WKOUTPUTDIR)</dirname> -
branches/wx-port-alpha/trunk/WebKitTools/Scripts/build-wxwebkit
r21434 r21449 10 10 WK_ROOTDIR=$WK_ROOT 11 11 export WXWEBKIT=1 12 export WEBKITOUTPUTDIR=`perl -e "use webkitdirs; print baseProductDir()"` 12 WEBKITOUTPUTDIR=`perl -e "use webkitdirs; print baseProductDir()"` 13 WINDEPS="pthreads/lib/pthreadVC2.dll icu/bin/icuuc34.dll icu/bin/icudt34.dll libcurl/*.dll sqlite3/sqlite3.dll" 14 WINDEPS="$WINDEPS $WXWIN/lib/vc_dll/wxmsw28ud_core_vc.dll $WXWIN/lib/vc_dll/wxbase28ud_vc.dll" 13 15 # TODO: check that we are running from the root of the source tree... 14 16 17 # cygpath will bork if the dir doesn't exist... 18 mkdir -p $WEBKITOUTPUTDIR 15 19 16 20 if [ $OSTYPE == cygwin ]; then 17 21 EXE=.exe 18 WK_ROOTDIR=`cygpath -m $WK_ROOT` 22 WK_ROOTDIR=`cygpath -d $WK_ROOT` 23 WEBKITOUTPUTDIR=`cygpath -d $WEBKITOUTPUTDIR` 24 export WEBKITOUTPUTDIR 19 25 if [ -z $WXWIN ]; then 20 26 echo "Error, you must set WXWIN to your wxWidgets root directory." … … 24 30 export BAKEFILE_PATHS=$WXWIN/build/bakefiles/wxpresets 25 31 fi 32 LINKER=`which link` 33 if [ "$LINKER" = "/usr/bin/link" ]; then 34 echo "WARNING: wxWebKit builds using MSVC on Windows, but it looks like" 35 echo "you have the GCC linker on your path. If /usr/bin/link does NOT point" 36 echo "to the MSVC linker, you need to move it or change your path to pick up" 37 echo "Microsoft's link.exe program first." 38 fi 39 26 40 else 41 export WEBKITOUTPUTDIR 27 42 WX_PREFIX=`wx-config --prefix` 28 43 if [ ! -d "$WX_PREFIX" ]; then … … 173 188 fi 174 189 fi 190 191 if [ "$OSTYPE" = "cygwin" ]; then 192 echo "Copying necessary DLLs to run test and sample applications..." 193 cd $WK_ROOT 194 cp $WINDEPS $WEBKITOUTPUTDIR 195 fi 175 196 fi 176 197 -
branches/wx-port-alpha/trunk/WebKitTools/Scripts/webkitdirs.pm
r21319 r21449 140 140 return if defined $configurationProductDir; 141 141 determineBaseProductDir(); 142 if(isCygwin()) { 142 if (isWx()){ 143 $configurationProductDir = "$baseProductDir"; 144 } elsif(isCygwin()) { 143 145 $configurationProductDir = "$baseProductDir/bin"; 144 }145 elsif (isWx()){146 $configurationProductDir = "$baseProductDir";147 146 } else { 148 147 determineConfiguration();
Note:
See TracChangeset
for help on using the changeset viewer.