VirtualBox

source: vbox/trunk/tools/bin/gen-slickedit-workspace.sh@ 40629

Last change on this file since 40629 was 40629, checked in by vboxsync, 13 years ago

gen-slickedit-workspace.sh: Set LANG=C before invoking env.sh to work around stupid slickedit LANG treatment.

  • Property svn:eol-style set to LF
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 41.9 KB
Line 
1# !kmk_ash
2# $Id: gen-slickedit-workspace.sh 40629 2012-03-26 09:20:47Z vboxsync $
3## @file
4# Script for generating a SlickEdit workspace.
5#
6
7#
8# Copyright (C) 2009-2011 Oracle Corporation
9#
10# This file is part of VirtualBox Open Source Edition (OSE), as
11# available from http://www.virtualbox.org. This file is free software;
12# you can redistribute it and/or modify it under the terms of the GNU
13# General Public License (GPL) as published by the Free Software
14# Foundation, in version 2 as it comes in the "COPYING" file of the
15# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
16# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
17#
18
19#
20# Some constants.
21#
22MY_CAT="kmk_cat"
23MY_CP="kmk_cp"
24MY_MKDIR="kmk_mkdir"
25MY_MV="kmk_mv"
26MY_SED="kmk_sed"
27MY_RM="kmk_rm"
28MY_SLEEP="kmk_sleep"
29MY_EXPR="kmk_expr"
30MY_SVN="svn"
31
32#MY_SORT="kmk_cat"
33MY_SORT="sort"
34
35#
36# Globals.
37#
38MY_PROJECT_FILES=""
39MY_OUT_DIRS="\
40out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE} \
41out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/${BUILD_TYPE} \
42out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/debug \
43out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/debug \
44out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/release \
45out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/release \
46out/linux.amd64/debug \
47out/linux.x86/debug \
48out/win.amd64/debug \
49out/win.x86/debug \
50out/darwin.amd64/debug \
51out/darwin.x86/debug \
52out/solaris.amd64/debug \
53out/solaris.x86/debug";
54
55
56#
57# Parameters w/ defaults.
58#
59MY_ROOT_DIR=".."
60MY_OUT_DIR="SlickEdit"
61MY_PRJ_PRF="VBox-"
62MY_WS_NAME="VirtualBox.vpw"
63MY_DBG=""
64MY_WINDOWS_HOST=""
65MY_OPT_MINIMAL=""
66
67#MY_KBUILD_PATH="${KBUILD_PATH}"
68#test -z "${MY_KBUILD_PATH}" && MY_KBUILD_PATH="${PATH_KBUILD}"
69#MY_KBUILD=""
70
71
72##
73# Gets the absolute path to an existing directory.
74#
75# @param $1 The path.
76my_abs_dir()
77{
78 if test -n "${PWD}"; then
79 MY_ABS_DIR=`cd ${MY_ROOT_DIR}/${1} && echo ${PWD}`
80 else
81 # old cygwin shell has no PWD and need adjusting.
82 MY_ABS_DIR=`cd ${MY_ROOT_DIR}/${1} && pwd | ${MY_SED} -e 's,^/cygdrive/\(.\)/,\1:/,'`
83 fi
84 if test -z "${MY_ABS_DIR}"; then
85 MY_ABS_DIR="${1}"
86 fi
87}
88
89##
90# Gets the file name part of a path.
91#
92# @param $1 The path.
93my_get_name()
94{
95 SAVED_IFS=$IFS
96 IFS=":/ "
97 set $1
98 while test $# -gt 1 -a -n "${2}";
99 do
100 shift;
101 done
102
103 IFS=$SAVED_IFS
104 #echo "$1"
105 export MY_GET_NAME=$1
106}
107
108##
109# Generate file entry for the specified file if it was found to be of interest.
110#
111# @param $1 The output file name base.
112# @param $2 The file name.
113my_file()
114{
115 # sort and filter by file type.
116 case "$2" in
117 # drop these.
118 *.kup|*~|*.pyc|*.exe|*.sys|*.dll|*.o|*.obj|*.lib|*.a|*.ko)
119 return 0
120 ;;
121
122 # by prefix or directory component.
123 tst*|*/testcase/*)
124 MY_FOLDER="$1-Testcases.lst"
125 ;;
126
127 # by extension.
128 *.c|*.cpp|*.m|*.mm|*.pl|*.py|*.as|*.c.h|*.cpp.h)
129 MY_FOLDER="$1-Sources.lst"
130 ;;
131
132 *.h|*.hpp|*.mm)
133 MY_FOLDER="$1-Headers.lst"
134 ;;
135
136 *.asm|*.s|*.S|*.inc|*.mac)
137 MY_FOLDER="$1-Assembly.lst"
138 ;;
139
140 *)
141 MY_FOLDER="$1-Others.lst"
142 ;;
143 esac
144
145 ## @todo only files which are in subversion.
146# if ${MY_SVN} info "${2}" > /dev/null 2>&1; then
147 my_get_name "${2}"
148 echo ' <!-- sortkey: '"${MY_GET_NAME}"' --> <F N="'"${2}"'"/>' >> "${MY_FOLDER}"
149# fi
150}
151
152##
153# Generate file entries for the specified sub-directory tree.
154#
155# @param $1 The output filename.
156# @param $2 The sub-directory.
157my_sub_tree()
158{
159 if test -n "$MY_DBG"; then echo "dbg: my_sub_tree: ${2}"; fi
160
161 # Skip .svn directories.
162 case "$2" in
163 */.svn|*/.svn)
164 return 0
165 ;;
166 esac
167
168 # Process the files in the directory.
169 for f in $2/*;
170 do
171 if test -d "${f}";
172 then
173 my_sub_tree "${1}" "${f}"
174 else
175 my_file "${1}" "${f}"
176 fi
177 done
178 return 0;
179}
180
181
182##
183# Generate folders for the specified directories and files.
184#
185# @param $1 The output (base) file name.
186# @param $2+ The files and directories to traverse.
187my_generate_folder()
188{
189 MY_FILE="$1"
190 shift
191
192 # Zap existing file collections.
193 > "${MY_FILE}-Sources.lst"
194 > "${MY_FILE}-Headers.lst"
195 > "${MY_FILE}-Assembly.lst"
196 > "${MY_FILE}-Testcases.lst"
197 > "${MY_FILE}-Others.lst"
198
199 # Traverse the directories and files.
200 while test $# -ge 1 -a -n "${1}";
201 do
202 for f in ${MY_ROOT_DIR}/$1;
203 do
204 if test -d "${f}";
205 then
206 my_sub_tree "${MY_FILE}" "${f}"
207 else
208 my_file "${MY_FILE}" "${f}"
209 fi
210 done
211 shift
212 done
213
214 # Generate the folders.
215 if test -s "${MY_FILE}-Sources.lst";
216 then
217 echo ' <Folder Name="Sources" Filters="*.c;*.cpp;*.cpp.h;*.c.h;*.m;*.mm;*.pl;*.py;*.as">' >> "${MY_FILE}"
218 ${MY_SORT} "${MY_FILE}-Sources.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
219 echo ' </Folder>' >> "${MY_FILE}"
220 fi
221 if test -s "${MY_FILE}-Headers.lst";
222 then
223 echo ' <Folder Name="Headers" Filters="*.h;*.hpp">' >> "${MY_FILE}"
224 ${MY_SORT} "${MY_FILE}-Headers.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
225 echo ' </Folder>' >> "${MY_FILE}"
226 fi
227 if test -s "${MY_FILE}-Assembly.lst";
228 then
229 echo ' <Folder Name="Assembly" Filters="*.asm;*.s;*.S;*.inc;*.mac">' >> "${MY_FILE}"
230 ${MY_SORT} "${MY_FILE}-Assembly.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
231 echo ' </Folder>' >> "${MY_FILE}"
232 fi
233 if test -s "${MY_FILE}-Testcases.lst";
234 then
235 echo ' <Folder Name="Testcases" Filters="tst*;">' >> "${MY_FILE}"
236 ${MY_SORT} "${MY_FILE}-Testcases.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
237 echo ' </Folder>' >> "${MY_FILE}"
238 fi
239 if test -s "${MY_FILE}-Others.lst";
240 then
241 echo ' <Folder Name="Others" Filters="">' >> "${MY_FILE}"
242 ${MY_SORT} "${MY_FILE}-Others.lst" | ${MY_SED} -e 's/<!-- sortkey: [^>]*>/ /' >> "${MY_FILE}"
243 echo ' </Folder>' >> "${MY_FILE}"
244 fi
245
246 # Cleanup
247 ${MY_RM} "${MY_FILE}-Sources.lst" "${MY_FILE}-Headers.lst" "${MY_FILE}-Assembly.lst" "${MY_FILE}-Testcases.lst" "${MY_FILE}-Others.lst"
248}
249
250
251##
252# Function generating a project.
253#
254# @param $1 The project file name.
255# @param $2 The project working directory.
256# @param $3 Dummy separator.
257# @param $4+ Include directories.
258# @param $N --end-includes
259# @param $N+1 Directory sub-trees and files to include in the project.
260#
261my_generate_project()
262{
263 MY_FILE="${MY_PRJ_PRF}${1}.vpj";
264 echo "Generating ${MY_FILE}..."
265 MY_WRK_DIR="${2}"
266 shift
267 shift
268 shift
269
270 # Add it to the project list for workspace construction later on.
271 MY_PROJECT_FILES="${MY_PROJECT_FILES} ${MY_FILE}"
272
273
274 #
275 # Generate the head bits.
276 #
277 echo '<!DOCTYPE Project SYSTEM "http://www.slickedit.com/dtd/vse/10.0/vpj.dtd">' > "${MY_FILE}"
278 echo '<Project' >> "${MY_FILE}"
279 echo ' Version="10.0"' >> "${MY_FILE}"
280 echo ' VendorName="SlickEdit"' >> "${MY_FILE}"
281 echo ' VCSProject="Subversion:"' >> "${MY_FILE}"
282# echo ' Customized="1"' >> "${MY_FILE}"
283# echo ' WorkingDir="."' >> "${MY_FILE}"
284 my_abs_dir "${MY_WRK_DIR}" >> "${MY_FILE}"
285 echo ' WorkingDir="'"${MY_ABS_DIR}"'"' >> "${MY_FILE}"
286 echo ' >' >> "${MY_FILE}"
287 echo ' <Config Name="Release" OutputFile="" CompilerConfigName="Latest Version">' >> "${MY_FILE}"
288 echo ' <Menu>' >> "${MY_FILE}"
289 echo ' <Target Name="Compile" MenuCaption="&amp;Compile" CaptureOutputWith="ProcessBuffer"' >> "${MY_FILE}"
290 echo ' SaveOption="SaveCurrent" RunFromDir="%p" ClearProcessBuffer="1">' >> "${MY_FILE}"
291 echo ' <Exec CmdLine="'"${MY_KMK_INVOCATION}"' -C %p %n.o"/>' >> "${MY_FILE}"
292 echo ' </Target>' >> "${MY_FILE}"
293 echo ' <Target Name="Build" MenuCaption="&amp;Build"CaptureOutputWith="ProcessBuffer"' >> "${MY_FILE}"
294 echo ' SaveOption="SaveWorkspaceFiles" RunFromDir="%rw" ClearProcessBuffer="1">' >> "${MY_FILE}"
295 echo ' <Exec CmdLine="'"${MY_KMK_INVOCATION}"' -C %rw"/>' >> "${MY_FILE}"
296 echo ' </Target>' >> "${MY_FILE}"
297 echo ' <Target Name="Rebuild" MenuCaption="&amp;Rebuild" CaptureOutputWith="ProcessBuffer"' >> "${MY_FILE}"
298 echo ' SaveOption="SaveWorkspaceFiles" RunFromDir="%rw" ClearProcessBuffer="1">' >> "${MY_FILE}"
299 echo ' <Exec CmdLine="'"${MY_KMK_INVOCATION}"' -C %rw rebuild"/>' >> "${MY_FILE}"
300 echo ' </Target>' >> "${MY_FILE}"
301 echo ' <Target Name="Debug" MenuCaption="&amp;Debug" SaveOption="SaveNone" RunFromDir="%rw">' >> "${MY_FILE}"
302 echo ' <Exec/>' >> "${MY_FILE}"
303 echo ' </Target>' >> "${MY_FILE}"
304 echo ' <Target Name="Execute" MenuCaption="E&amp;xecute" SaveOption="SaveNone" RunFromDir="%rw">' >> "${MY_FILE}"
305 echo ' <Exec/>' >> "${MY_FILE}"
306 echo ' </Target>' >> "${MY_FILE}"
307 echo ' </Menu>' >> "${MY_FILE}"
308
309 #
310 # Include directories.
311 #
312 echo ' <Includes>' >> "${MY_FILE}"
313 while test $# -ge 1 -a "${1}" != "--end-includes";
314 do
315 for f in $1;
316 do
317 my_abs_dir ${f}
318 echo ' <Include Dir="'"${MY_ABS_DIR}/"'"/>' >> "${MY_FILE}"
319 done
320 shift
321 done
322 shift
323 echo ' </Includes>' >> "${MY_FILE}"
324 echo ' </Config>' >> "${MY_FILE}"
325
326
327 #
328 # Process directories+files and create folders.
329 #
330 echo ' <Files>' >> "${MY_FILE}"
331 my_generate_folder "${MY_FILE}" $*
332 echo ' </Files>' >> "${MY_FILE}"
333
334 #
335 # The tail.
336 #
337 echo '</Project>' >> "${MY_FILE}"
338
339 return 0
340}
341
342
343##
344# Generate the workspace
345#
346my_generate_workspace()
347{
348 MY_FILE="${MY_WS_NAME}"
349 echo "Generating ${MY_FILE}..."
350 echo '<!DOCTYPE Workspace SYSTEM "http://www.slickedit.com/dtd/vse/10.0/vpw.dtd">' > "${MY_FILE}"
351 echo '<Workspace Version="10.0" VendorName="SlickEdit">' >> "${MY_FILE}"
352 echo ' <Projects>' >> "${MY_FILE}"
353 for i in ${MY_PROJECT_FILES};
354 do
355 echo ' <Project File="'"${i}"'" />' >> "${MY_FILE}"
356 done
357 echo ' </Projects>' >> "${MY_FILE}"
358 echo '</Workspace>' >> "${MY_FILE}"
359 return 0;
360}
361
362
363##
364# Generate stuff
365#
366my_generate_usercpp_h()
367{
368 #
369 # Probe the slickedit user config, picking the most recent version.
370 #
371 if test -d "${HOME}/Library/Application Support/Slickedit"; then
372 MY_SLICKDIR_="${HOME}/Library/Application Support/Slickedit"
373 MY_USERCPP_H="unxcpp.h"
374 MY_VSLICK_DB="vslick.stu"
375 elif test -d "${HOMEDRIVE}${HOMEPATH}/Documents/My SlickEdit Config"; then
376 MY_SLICKDIR_="${HOMEDRIVE}${HOMEPATH}/Documents/My SlickEdit Config"
377 MY_USERCPP_H="usercpp.h"
378 MY_VSLICK_DB="vslick.sta"
379 else
380 MY_SLICKDIR_="${HOME}/.slickedit"
381 MY_USERCPP_H="unxcpp.h"
382 MY_VSLICK_DB="vslick.stu"
383 fi
384
385 MY_VER_NUM="0"
386 MY_VER="0.0.0"
387 for subdir in "${MY_SLICKDIR_}/"*;
388 do
389 if test -f "${subdir}/${MY_USERCPP_H}" -o -f "${subdir}/${MY_VSLICK_DB}"; then
390 MY_CUR_VER_NUM=0
391 MY_CUR_VER=`echo "${subdir}" | ${MY_SED} -e 's,^.*/,,g'`
392
393 # Convert the dotted version number to an integer, checking that
394 # it is all numbers in the process.
395 set `echo "${MY_CUR_VER}" | ${MY_SED} 's/\./ /g' `
396 i=100000000
397 while test $# -gt 0;
398 do
399 if ! ${MY_EXPR} "$1" + 1 > /dev/null 2> /dev/null; then
400 MY_CUR_VER_NUM=0;
401 break
402 fi
403 if test "$i" -gt 0; then
404 MY_CUR_VER_NUM=$((${MY_CUR_VER_NUM} + $1 * $i))
405 i=$(($i / 100))
406 fi
407 shift
408 done
409
410 # More recent that what we have?
411 if test "${MY_CUR_VER_NUM}" -gt "${MY_VER_NUM}"; then
412 MY_VER_NUM="${MY_CUR_VER_NUM}"
413 MY_VER="${MY_CUR_VER}"
414 fi
415 fi
416 done
417
418 MY_SLICKDIR="${MY_SLICKDIR_}/${MY_VER}"
419 MY_USERCPP_H_FULL="${MY_SLICKDIR}/${MY_USERCPP_H}"
420 if test -d "${MY_SLICKDIR}"; then
421 echo "Found SlickEdit v${MY_VER} preprocessor file: ${MY_USERCPP_H_FULL}"
422 else
423 echo "Failed to locate SlickEdit preprocessor file. You need to manually merge ${MY_USERCPP_H}."
424 MY_USERCPP_H_FULL=""
425 fi
426
427 # Generate our
428 MY_FILE="${MY_USERCPP_H}"
429 ${MY_CAT} > ${MY_FILE} <<EOF
430#define IN_SLICKEDIT
431#define RT_C_DECLS_BEGIN
432#define RT_C_DECLS_END
433#define RT_NO_THROW
434#define RT_THROW(type) throw(type)
435#define RT_GCC_EXTENSION'
436#define RT_COMPILER_GROKS_64BIT_BITFIELDS'
437#define RT_COMPILER_WITH_80BIT_LONG_DOUBLE'
438
439#define ATL_NO_VTABLE
440#define BEGIN_COM_MAP(a)
441#define COM_INTERFACE_ENTRY(a)
442#define COM_INTERFACE_ENTRY2(a,b)
443#define COM_INTERFACE_ENTRY3(a,b,c)
444#define COM_INTERFACE_ENTRY4(a,b,c,d)
445#define END_COM_MAP(a)
446
447#define COM_DECL_READONLY_ENUM_AND_COLLECTION(a)
448#define COMGETTER(n) n
449#define COMSETTER(n) n
450#define ComSafeArrayIn(t,a) t a[]
451#define ComSafeArrayOut(t,a) t * a[]
452#define DECLARE_CLASSFACTORY(a)
453#define DECLARE_CLASSFACTORY_SINGLETON(a)
454#define DECLARE_REGISTRY_RESOURCEID(a)
455#define DECLARE_NOT_AGGREGATABLE(a)
456#define DECLARE_PROTECT_FINAL_CONSTRUCT(a)
457#define DECLARE_EMPTY_CTOR_DTOR(a) a(); ~a();
458#define DEFINE_EMPTY_CTOR_DTOR(a) a::a() {} a::~a() {}
459#define NS_DECL_ISUPPORTS
460#define NS_IMETHOD virtual nsresult
461#define NS_IMETHOD_(type) virtual type
462#define NS_IMETHODIMP nsresult
463#define NS_IMETHODIMP_(type) type
464#define PARSERS_EXPORT
465EOF
466 if test -n "${MY_WINDOWS_HOST}"; then
467 ${MY_CAT} >> ${MY_FILE} <<EOF
468#define COM_STRUCT_OR_CLASS(I) struct I
469#define STDMETHOD(m) virtual HRESULT m
470#define STDMETHOD_(type,m) virtual type m
471#define STDMETHODIMP HRESULT
472#define STDMETHODIMP_(type) type
473EOF
474 else
475 ${MY_CAT} >> ${MY_FILE} <<EOF
476#define COM_STRUCT_OR_CLASS(I) class I
477#define STDMETHOD(m) virtual nsresult m
478#define STDMETHOD_(type,m) virtual type m
479#define STDMETHODIMP nsresult
480#define STDMETHODIMP_(type) type
481EOF
482 fi
483 ${MY_CAT} >> ${MY_FILE} <<EOF
484#define VBOX_SCRIPTABLE(a) public a
485#define VBOX_SCRIPTABLE_IMPL(a)
486#define VIRTUALBOXBASE_ADD_ERRORINFO_SUPPORT(a)
487
488#define CTX_SUFF(var) var##R3
489#define CTXAllSUFF(var) var##R3
490#define CTXSUFF(var) var##HC
491#define OTHERCTXSUFF(var) var##GC
492#define CTXALLMID(first, last) first##R3##last
493#define CTXMID(first, last) first##HC##last
494#define OTHERCTXMID(first, last) first##GC##last
495#define CTXTYPE(GCType, R3Type, R0Type) R3Type
496#define RCTYPE(RCType, HCType) RCType
497#define GCTYPE(GCType, HCType) GCType
498#define RCPTRTYPE(RCType) RCType
499#define GCPTRTYPE(GCType) GCType
500#define HCPTRTYPE(HCType) HCType
501#define R3R0PTRTYPE(HCType) HCType
502#define R0PTRTYPE(R3Type) R3Type
503#define R3PTRTYPE(R0Type) R0Type
504#define RT_SRC_POS __FILE__, __LINE__, __PRETTY_FUNCTION__
505#define RT_SRC_POS_DECL const char *pszFile, unsigned iLine, const char *pszFunction
506#define RT_SRC_POS_ARGS pszFile, iLine, pszFunction
507#define RTCALL
508#define DECLINLINE(type) inline type
509#define DECL_FORCE_INLINE(type) inline type
510#define DECL_INVALID(type) type
511
512#define PDMDEVINSINT_DECLARED 1
513#define VBOX_WITH_HGCM 1
514#define VBOXCALL
515
516#define PGM_CTX(a,b) b
517#define PGM_CTX3(a,b,c) c
518#define PGM_GST_NAME(name) PGM_GST_NAME_AMD64(name)
519#define PGM_GST_NAME_REAL(name) PGM_CTX3(name)
520#define PGM_GST_NAME_PROT(name) PGM_CTX3(pgm,GstProt,name)
521#define PGM_GST_NAME_32BIT(name) PGM_CTX3(pgm,Gst32Bit,name)
522#define PGM_GST_NAME_PAE(name) PGM_CTX3(pgm,GstPAE,name)
523#define PGM_GST_NAME_AMD64(name) PGM_CTX3(pgm,GstAMD64,name)
524#define PGM_GST_DECL(type, name) type PGM_GST_NAME(name)
525#define PGM_SHW_NAME(name) PGM_GST_NAME_AMD64(name)
526#define PGM_SHW_NAME_32BIT(name) PGM_CTX3(pgm,Shw32Bit,name)
527#define PGM_SHW_NAME_PAE(name) PGM_CTX3(pgm,ShwPAE,name)
528#define PGM_SHW_NAME_AMD64(name) PGM_CTX3(pgm,ShwAMD64,name)
529#define PGM_SHW_NAME_NESTED(name) PGM_CTX3(pgm,ShwNested,name)
530#define PGM_SHW_NAME_EPT(name) PGM_CTX3(pgm,ShwEPT,name)
531#define PGM_SHW_DECL(type, name) type PGM_SHW_NAME(name)
532#define PGM_BTH_NAME(name) PGM_BTH_NAME_NESTED_AMD64(name)
533#define PGM_BTH_NAME_32BIT_REAL(name) PGM_CTX3(pgm,Bth,name)
534#define PGM_BTH_NAME_32BIT_PROT(name) PGM_CTX3(pgm,Bth,name)
535#define PGM_BTH_NAME_32BIT_32BIT(name) PGM_CTX3(pgm,Bth,name)
536#define PGM_BTH_NAME_PAE_REAL(name) PGM_CTX3(pgm,Bth,name)
537#define PGM_BTH_NAME_PAE_PROT(name) PGM_CTX3(pgm,Bth,name)
538#define PGM_BTH_NAME_PAE_32BIT(name) PGM_CTX3(pgm,Bth,name)
539#define PGM_BTH_NAME_PAE_PAE(name) PGM_CTX3(pgm,Bth,name)
540#define PGM_BTH_NAME_AMD64_PROT(name) PGM_CTX3(pgm,Bth,name)
541#define PGM_BTH_NAME_AMD64_AMD64(name) PGM_CTX3(pgm,Bth,name)
542#define PGM_BTH_NAME_NESTED_REAL(name) PGM_CTX3(pgm,Bth,name)
543#define PGM_BTH_NAME_NESTED_PROT(name) PGM_CTX3(pgm,Bth,name)
544#define PGM_BTH_NAME_NESTED_32BIT(name) PGM_CTX3(pgm,Bth,name)
545#define PGM_BTH_NAME_NESTED_PAE(name) PGM_CTX3(pgm,Bth,name)
546#define PGM_BTH_NAME_NESTED_AMD64(name) PGM_CTX3(pgm,Bth,name)
547#define PGM_BTH_NAME_EPT_REAL(name) PGM_CTX3(pgm,Bth,name)
548#define PGM_BTH_NAME_EPT_PROT(name) PGM_CTX3(pgm,Bth,name)
549#define PGM_BTH_NAME_EPT_32BIT(name) PGM_CTX3(pgm,Bth,name)
550#define PGM_BTH_NAME_EPT_PAE(name) PGM_CTX3(pgm,Bth,name)
551#define PGM_BTH_NAME_EPT_AMD64(name) PGM_CTX3(pgm,Bth,name)
552#define PGM_BTH_DECL(type, name) type PGM_BTH_NAME(name)
553
554#define FNIEMOP_STUB(a_Name) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu) { return VERR_NOT_IMPLEMENTED; }
555#define FNIEMOP_DEF(a_Name) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu)
556#define FNIEMOP_DEF_1(a_Name, a_Type0, a_Name0) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, a_Type0 a_Name0)
557#define FNIEMOP_DEF_2(a_Name, a_Type0, a_Name0, a_Type1, a_Name1) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, a_Type0 a_Name0, a_Type1 a_Name1)
558#define IEM_CIMPL_DEF_0(a_Name) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu)
559#define IEM_CIMPL_DEF_1(a_Name, a_Type0, a_Name0) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, , a_Type0 a_Name0)
560#define IEM_CIMPL_DEF_2(a_Name, a_Type0, a_Name0, a_Type1, a_Name1) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, , a_Type0 a_Name0, a_Type1 a_Name1)
561#define IEM_CIMPL_DEF_3(a_Name, a_Type0, a_Name0, a_Type1, a_Name1, a_Type2, a_Name2) static VBOXSTRICTRC a_Name(PIEMCPU pIemCpu, , a_Type0 a_Name0, a_Type1 a_Name1, , a_Type2 a_Name2)
562#define IEM_MC_LOCAL(a_Type, a_Name) a_Type a_Name
563#define IEM_MC_ARG(a_Type, a_Name, a_iArg) a_Type a_Name
564#define IEM_MC_ARG_CONST(a_Type, a_Name, a_Value, a_iArg) a_Type const a_Name = a_Value
565EOF
566
567 MY_HDR_FILES=` echo ${MY_ROOT_DIR}/include/VBox/*.h ${MY_ROOT_DIR}/include/VBox/vmm/*.h \
568 | ${MY_SED} -e 's,${MY_ROOT_DIR}/include/VBox/err.h,,' `
569 MY_HDR_FILES="${MY_HDR_FILES} ${MY_ROOT_DIR}/include/iprt/cdefs.h"
570 ${MY_SED} \
571 -e '/__cdecl/d' \
572 -e '/^ *# *define.*DECL/!d' \
573 -e '/DECLS/d' \
574 -e '/DECLARE_CLS_/d' \
575 -e '/_SRC_POS_DECL/d' \
576 -e '/declspec/d' \
577 -e '/__attribute__/d' \
578 -e 's/# */#/g' \
579 -e 's/ */ /g' \
580 -e '/ DECLEXPORT_CLASS/d' \
581 -e 's/ *VBOXCALL//' \
582 -e 's/ *RTCALL//' \
583 -e '/ DECLASM(type) type/d' \
584 -e '/define *DECL..CALLBACKMEMBER(type[^)]*) *RT/d' \
585 -e '/define *DECLINLINE(type)/d' \
586 -e '/define *DECL_FORCE_INLINE(type)/d' \
587 -e '/ *DECL_INVALID(/d' \
588 \
589 -e 's/(type) DECLHIDDEN(type)/(type) type/' \
590 -e 's/(type) DECLEXPORT(type)/(type) type/' \
591 -e 's/(type) DECLIMPORT(type)/(type) type/' \
592 -e 's/(a_Type) DECLHIDDEN(a_Type)/(a_Type) a_Type/' \
593 -e 's/(a_Type) DECLEXPORT(a_Type)/(a_Type) a_Type/' \
594 -e 's/(a_Type) DECLIMPORT(a_Type)/(a_Type) a_Type/' \
595 \
596 --append "${MY_FILE}" \
597 ${MY_HDR_FILES}
598
599 ${MY_CAT} "${MY_FILE}" \
600 | ${MY_SED} -e 's/_/\x1F/g' -e 's/(/\x1E/g' -e 's/[[:space:]][[:space:]]*/\x1C/g' \
601 | ${MY_SED} -e 's/\x1F/_/g' -e 's/\x1E/(/g' -e 's/\x1C/ /g' \
602 | ${MY_SORT} \
603 | ${MY_SED} -e '/#define/s/$/ \/\/ vbox/' --output "${MY_FILE}.2"
604
605 # Eliminate duplicates.
606 > "${MY_FILE}.3"
607 exec < "${MY_FILE}.2"
608 MY_PREV_DEFINE=""
609 while read MY_LINE;
610 do
611 MY_DEFINE=`echo "${MY_LINE}" | ${MY_SED} -e 's/^#define \([^ ()]*\).*$/\1/' `
612 if test "${MY_DEFINE}" != "${MY_PREV_DEFINE}"; then
613 MY_PREV_DEFINE=${MY_DEFINE}
614 echo "${MY_LINE}" >> "${MY_FILE}.3"
615 fi
616 done
617
618 # Append non-vbox bits from the current user config.
619 if test -n "${MY_USERCPP_H_FULL}" -a -f "${MY_USERCPP_H_FULL}"; then
620 ${MY_SED} -e '/ \/\/ vbox$/d' -e '/^[[:space:]]*$/d' --append "${MY_FILE}.3" "${MY_USERCPP_H_FULL}"
621 fi
622
623 # Finalize the file (sort + blank lines).
624 ${MY_CAT} "${MY_FILE}.3" \
625 | ${MY_SED} -e 's/$/\n/' --output "${MY_FILE}"
626 ${MY_RM} -f "${MY_FILE}.2" "${MY_FILE}.3"
627
628 # Install it.
629 if test -n "${MY_USERCPP_H_FULL}" -a -d "${MY_SLICKDIR}"; then
630 if test -f "${MY_USERCPP_H_FULL}"; then
631 ${MY_MV} -vf "${MY_USERCPP_H_FULL}" "${MY_USERCPP_H_FULL}.bak"
632 ${MY_CP} "${MY_FILE}" "${MY_USERCPP_H_FULL}"
633 echo "Updated the SlickEdit preprocessor file. (Previous version renamed to .bak.)"
634 else
635 ${MY_CP} "${MY_FILE}" "${MY_USERCPP_H_FULL}"
636 echo "Created the SlickEdit preprocessor file."
637 fi
638 fi
639}
640
641###### end of functions ####
642
643
644#
645# Parse arguments.
646#
647while test $# -ge 1;
648do
649 ARG=$1
650 shift
651 case "$ARG" in
652
653 --rootdir)
654 if test $# -eq 0; then
655 echo "error: missing --rootdir argument." 1>&2
656 exit 1;
657 fi
658 MY_ROOT_DIR="$1"
659 shift
660 ;;
661
662 --outdir)
663 if test $# -eq 0; then
664 echo "error: missing --outdir argument." 1>&2
665 exit 1;
666 fi
667 MY_OUT_DIR="$1"
668 shift
669 ;;
670
671 --project-base)
672 if test $# -eq 0; then
673 echo "error: missing --project-base argument." 1>&2
674 exit 1;
675 fi
676 MY_PRJ_PRF="$1"
677 shift
678 ;;
679
680 --workspace)
681 if test $# -eq 0; then
682 echo "error: missing --workspace argument." 1>&2
683 exit 1;
684 fi
685 MY_WS_NAME="$1"
686 shift
687 ;;
688
689 --windows-host)
690 MY_WINDOWS_HOST=1
691 ;;
692
693 --minimal)
694 MY_OPT_MINIMAL=1
695 ;;
696
697 # usage
698 --h*|-h*|-?|--?)
699 echo "usage: $0 [--rootdir <rootdir>] [--outdir <outdir>] [--project-base <prefix>] [--workspace <name>] [--minimal]"
700 echo ""
701 echo "If --outdir is specified, you must specify a --rootdir relative to it as well."
702 exit 1;
703 ;;
704
705 # default
706 *)
707 echo "error: Invalid parameter '$ARG'" 1>&2
708 exit 1;
709
710 esac
711done
712
713
714#
715# From now on everything *MUST* succeed.
716#
717set -e
718
719
720#
721# Make sure the output directory exists, is valid and clean.
722#
723${MY_RM} -f \
724 "${MY_OUT_DIR}/${MY_PRJ_PRF}"*.vpj \
725 "${MY_OUT_DIR}/${MY_WS_NAME}" \
726 "${MY_OUT_DIR}/`echo ${MY_WS_NAME} | ${MY_SED} -e 's/\.vpw$/.vtg/'`"
727${MY_MKDIR} -p "${MY_OUT_DIR}"
728cd "${MY_OUT_DIR}"
729
730
731#
732# Determine the invocation to conjure up kmk.
733#
734my_abs_dir "tools"
735if test -n "${MY_WINDOWS_HOST}"; then
736 MY_KMK_INVOCATION="${MY_ABS_DIR}/win.x86/bin/rexx.exe ${MY_ABS_DIR}/envSub.cmd kmk.exe"
737else
738 MY_KMK_INVOCATION="LANG=C ${MY_ABS_DIR}/env.sh --quiet --no-wine kmk"
739fi
740
741
742#
743# Generate the projects and workspace.
744#
745# Note! The configs aren't optimal yet, lots of adjustment wrt headers left to be done.
746#
747
748# src/VBox/Runtime
749my_generate_project "IPRT" "src/VBox/Runtime" --begin-incs "include" "src/VBox/Runtime/include" --end-includes "include/iprt" "src/VBox/Runtime"
750
751# src/VBox/VMM
752my_generate_project "VMM" "src/VBox/VMM" --begin-incs "include" "src/VBox/VMM" --end-includes "src/VBox/VMM" \
753 "include/VBox/vmm/cfgm.h" \
754 "include/VBox/vmm/cpum.*" \
755 "include/VBox/vmm/dbgf.h" \
756 "include/VBox/vmm/em.h" \
757 "include/VBox/vmm/gmm.*" \
758 "include/VBox/vmm/gvm.*" \
759 "include/VBox/vmm/hw*.*" \
760 "include/VBox/vmm/iom.h" \
761 "include/VBox/vmm/mm.h" \
762 "include/VBox/vmm/patm.*" \
763 "include/VBox/vmm/pdm*.h" \
764 "include/VBox/vmm/pgm.*" \
765 "include/VBox/vmm/rem.h" \
766 "include/VBox/vmm/selm.*" \
767 "include/VBox/vmm/ssm.h" \
768 "include/VBox/vmm/stam.*" \
769 "include/VBox/vmm/tm.h" \
770 "include/VBox/vmm/trpm.*" \
771 "include/VBox/vmm/vm.*" \
772 "include/VBox/vmm/vmm.*"
773
774# src/recompiler
775my_generate_project "REM" "src/recompiler" --begin-incs \
776 "include" \
777 "src/recompiler" \
778 "src/recompiler/target-i386" \
779 "src/recompiler/tcg/i386" \
780 "src/recompiler/Sun/crt" \
781 --end-includes \
782 "src/recompiler" \
783 "src/VBox/VMM/REMInternal.h" \
784 "src/VBox/VMM/VMMAll/REMAll.cpp"
785
786# src/VBox/Additions
787my_generate_project "Add-freebsd" "src/VBox/Additions/freebsd" --begin-incs "include" "src/VBox/Additions/freebsd" --end-includes "src/VBox/Additions/freebsd"
788my_generate_project "Add-linux" "src/VBox/Additions/linux" --begin-incs "include" "src/VBox/Additions/linux" --end-includes "src/VBox/Additions/linux"
789my_generate_project "Add-os2" "src/VBox/Additions/os2" --begin-incs "include" "src/VBox/Additions/os2" --end-includes "src/VBox/Additions/os2"
790my_generate_project "Add-solaris" "src/VBox/Additions/solaris" --begin-incs "include" "src/VBox/Additions/solaris" --end-includes "src/VBox/Additions/solaris"
791my_generate_project "Add-win" "src/VBox/Additions/WINNT" --begin-incs "include" "src/VBox/Additions/WINNT" --end-includes "src/VBox/Additions/WINNT"
792test -z "$MY_OPT_MINIMAL" && \
793my_generate_project "Add-x11" "src/VBox/Additions/x11" --begin-incs "include" "src/VBox/Additions/x11" --end-includes "src/VBox/Additions/x11"
794my_generate_project "Add-Control" "src/VBox/Additions/common/VBoxControl" --begin-incs "include" "src/VBox/Additions/common/VBoxControl" --end-includes "src/VBox/Additions/common/VBoxControl"
795my_generate_project "Add-GuestDrv" "src/VBox/Additions/common/VBoxGuest" --begin-incs "include" "src/VBox/Additions/common/VBoxGuest" --end-includes "src/VBox/Additions/common/VBoxGuest" "include/VBox/VBoxGuest*.*"
796my_generate_project "Add-Lib" "src/VBox/Additions/common/VBoxGuestLib" --begin-incs "include" "src/VBox/Additions/common/VBoxGuestLib" --end-includes "src/VBox/Additions/common/VBoxGuestLib" "include/VBox/VBoxGuest*.*"
797my_generate_project "Add-Service" "src/VBox/Additions/common/VBoxService" --begin-incs "include" "src/VBox/Additions/common/VBoxService" --end-includes "src/VBox/Additions/common/VBoxService"
798if test -z "$MY_OPT_MINIMAL"; then
799 my_generate_project "Add-crOpenGL" "src/VBox/Additions/common/crOpenGL" --begin-incs "include" "src/VBox/Additions/common/crOpenGL" --end-includes "src/VBox/Additions/common/crOpenGL"
800 my_generate_project "Add-CredProv" "src/VBox/Additions/WINNT/VBoxCredProv" --begin-incs "include" "src/VBox/Additions/WINNT/VBoxCredProv" --end-includes "src/VBox/Additions/WINNT/VBoxCredProv"
801 my_generate_project "Add-GINA" "src/VBox/Additions/WINNT/VBoxGINA" --begin-incs "include" "src/VBox/Additions/WINNT/VBoxGINA" --end-includes "src/VBox/Additions/WINNT/VBoxGINA"
802fi
803
804# src/VBox/Debugger
805my_generate_project "Debugger" "src/VBox/Debugger" --begin-incs "include" "src/VBox/Debugger" --end-includes "src/VBox/Debugger" "include/VBox/dbggui.h" "include/VBox/dbg.h"
806
807# src/VBox/Devices
808my_generate_project "Devices" "src/VBox/Devices" --begin-incs "include" "src/VBox/Devices" --end-includes "src/VBox/Devices" "include/VBox/pci.h" "include/VBox/pdm*.h"
809## @todo split this up.
810
811# src/VBox/Disassembler
812my_generate_project "DIS" "src/VBox/Disassembler" --begin-incs "include" "src/VBox/Disassembler" --end-includes "src/VBox/Disassembler" "include/VBox/dis*.h"
813
814# src/VBox/Frontends
815test -z "$MY_OPT_MINIMAL" && \
816my_generate_project "FE-VBoxBalloonCtrl" "src/VBox/Frontends/VBoxBalloonCtrl" --begin-incs "include" "src/VBox/Frontends/VBoxBalloonCtrl" --end-includes "src/VBox/Frontends/VBoxBalloonCtrl"
817my_generate_project "FE-VBoxManage" "src/VBox/Frontends/VBoxManage" --begin-incs "include" "src/VBox/Frontends/VBoxManage" --end-includes "src/VBox/Frontends/VBoxManage"
818my_generate_project "FE-VBoxHeadless" "src/VBox/Frontends/VBoxHeadless" --begin-incs "include" "src/VBox/Frontends/VBoxHeadless" --end-includes "src/VBox/Frontends/VBoxHeadless"
819my_generate_project "FE-VBoxSDL" "src/VBox/Frontends/VBoxSDL" --begin-incs "include" "src/VBox/Frontends/VBoxSDL" --end-includes "src/VBox/Frontends/VBoxSDL"
820my_generate_project "FE-VBoxShell" "src/VBox/Frontends/VBoxShell" --begin-incs "include" "src/VBox/Frontends/VBoxShell" --end-includes "src/VBox/Frontends/VBoxShell"
821# noise - my_generate_project "FE-VBoxBFE" "src/VBox/Frontends/VBoxBFE" --begin-incs "include" "src/VBox/Frontends/VBoxBFE" --end-includes "src/VBox/Frontends/VBoxBFE"
822FE_VBOX_WRAPPERS=""
823for d in ${MY_OUT_DIRS};
824do
825 if test -d "${MY_ROOT_DIR}/${d}/obj/VirtualBox/include"; then
826 FE_VBOX_WRAPPERS="${d}/obj/VirtualBox/include"
827 break
828 fi
829done
830if test -n "${FE_VBOX_WRAPPERS}"; then
831 my_generate_project "FE-VirtualBox" "src/VBox/Frontends/VirtualBox" --begin-incs "include" "${FE_VBOX_WRAPPERS}" --end-includes "src/VBox/Frontends/VirtualBox" "${FE_VBOX_WRAPPERS}/COMWrappers.cpp" "${FE_VBOX_WRAPPERS}/COMWrappers.h"
832else
833 my_generate_project "FE-VirtualBox" "src/VBox/Frontends/VirtualBox" --begin-incs "include" --end-includes "src/VBox/Frontends/VirtualBox"
834fi
835
836# src/VBox/GuestHost
837my_generate_project "HGSMI-GH" "src/VBox/GuestHost/HGSMI" --begin-incs "include" --end-includes "src/VBox/GuestHost/HGSMI"
838test -z "$MY_OPT_MINIMAL" && \
839my_generate_project "OpenGL-GH" "src/VBox/GuestHost/OpenGL" --begin-incs "include" "src/VBox/GuestHost/OpenGL" --end-includes "src/VBox/GuestHost/OpenGL"
840my_generate_project "ShClip-GH" "src/VBox/GuestHost/SharedClipboard" --begin-incs "include" --end-includes "src/VBox/GuestHost/SharedClipboard"
841
842# src/VBox/HostDrivers
843my_generate_project "SUP" "src/VBox/HostDrivers/Support" --begin-incs "include" "src/VBox/HostDrivers/Support" --end-includes "src/VBox/HostDrivers/Support" "include/VBox/sup.h" "include/VBox/sup.mac"
844my_generate_project "VBoxNetAdp" "src/VBox/HostDrivers/VBoxNetAdp" --begin-incs "include" "src/VBox/HostDrivers/VBoxNetAdp" --end-includes "src/VBox/HostDrivers/VBoxNetAdp" "include/VBox/intnet.h"
845my_generate_project "VBoxNetFlt" "src/VBox/HostDrivers/VBoxNetFlt" --begin-incs "include" "src/VBox/HostDrivers/VBoxNetFlt" --end-includes "src/VBox/HostDrivers/VBoxNetFlt" "include/VBox/intnet.h"
846my_generate_project "VBoxUSB" "src/VBox/HostDrivers/VBoxUSB" --begin-incs "include" "src/VBox/HostDrivers/VBoxUSB" --end-includes "src/VBox/HostDrivers/VBoxUSB" "include/VBox/usblib*.h" "include/VBox/usbfilter.h"
847
848# src/VBox/HostServices
849my_generate_project "GuestCntl" "src/VBox/HostServices/GuestControl" --begin-incs "include" "src/VBox/HostServices/GuestControl" --end-includes "src/VBox/HostServices/GuestControl"
850my_generate_project "GuestProps" "src/VBox/HostServices/GuestProperties" --begin-incs "include" "src/VBox/HostServices/GuestProperties" --end-includes "src/VBox/HostServices/GuestProperties"
851my_generate_project "ShClip-HS" "src/VBox/HostServices/SharedClipboard" --begin-incs "include" "src/VBox/HostServices/SharedClipboard" --end-includes "src/VBox/HostServices/SharedClipboard"
852my_generate_project "SharedFolders" "src/VBox/HostServices/SharedFolders" --begin-incs "include" "src/VBox/HostServices/SharedFolders" --end-includes "src/VBox/HostServices/SharedFolders" "include/VBox/shflsvc.h"
853my_generate_project "OpenGL-HS" "src/VBox/HostServices/SharedOpenGL" --begin-incs "include" "src/VBox/HostServices/SharedOpenGL" --end-includes "src/VBox/HostServices/SharedOpenGL"
854
855# src/VBox/ImageMounter
856my_generate_project "ImageMounter" "src/VBox/ImageMounter" --begin-incs "include" "src/VBox/ImageMounter" --end-includes "src/VBox/ImageMounter"
857
858# src/VBox/Installer
859my_generate_project "Installers" "src/VBox/Installer" --begin-incs "include" --end-includes "src/VBox/Installer"
860
861# src/VBox/Main
862my_generate_project "Main" "src/VBox/Main" --begin-incs "include" "src/VBox/Main/include" --end-includes "src/VBox/Main" "include/VBox/com" "include/VBox/settings.h"
863## @todo seperate webservices and Main. pick the right headers. added generated headers.
864
865# src/VBox/Network
866my_generate_project "Net-DHCP" "src/VBox/NetworkServices/DHCP" --begin-incs "include" "src/VBox/NetworkServices/NetLib" --end-includes "src/VBox/NetworkServices/DHCP"
867my_generate_project "Net-NAT" "src/VBox/NetworkServices/NAT" --begin-incs "include" "src/VBox/NetworkServices/NAT" --end-includes "src/VBox/NetworkServices/NAT" "src/VBox/Devices/Network/slirp"
868my_generate_project "Net-NetLib" "src/VBox/NetworkServices/NetLib" --begin-incs "include" "src/VBox/NetworkServices/NetLib" --end-includes "src/VBox/NetworkServices/NetLib"
869
870# src/VBox/RDP
871my_generate_project "RDP-Client" "src/VBox/RDP/client" --begin-incs "include" "src/VBox/RDP/client" --end-includes "src/VBox/RDP/client"
872my_generate_project "RDP-Server" "src/VBox/RDP/server" --begin-incs "include" "src/VBox/RDP/server" --end-includes "src/VBox/RDP/server"
873my_generate_project "RDP-WebClient" "src/VBox/RDP/webclient" --begin-incs "include" "src/VBox/RDP/webclient" --end-includes "src/VBox/RDP/webclient"
874my_generate_project "RDP-Misc" "src/VBox/RDP" --begin-incs "include" --end-includes "src/VBox/RDP/auth" "src/VBox/RDP/tscpasswd" "src/VBox/RDP/x11server"
875
876# src/VBox/Testsuite
877my_generate_project "Testsuite" "src/VBox/Testsuite" --begin-incs "include" --end-includes "src/VBox/Testsuite"
878
879# src/apps/adpctl - misplaced.
880my_generate_project "adpctl" "src/apps/adpctl" --begin-incs "include" --end-includes "src/apps/adpctl"
881
882# src/bldprogs
883my_generate_project "bldprogs" "src/bldprogs" --begin-incs "include" --end-includes "src/bldprogs"
884
885# A few things from src/lib
886my_generate_project "zlib" "src/libs/zlib-1.2.6" --begin-incs "include" --end-includes "src/libs/zlib-1.2.6/*.c" "src/libs/zlib-1.2.6/*.h"
887my_generate_project "liblzf" "src/libs/liblzf-3.4" --begin-incs "include" --end-includes "src/libs/liblzf-3.4"
888my_generate_project "libpng" "src/libs/libpng-1.2.8" --begin-incs "include" --end-includes "src/libs/libpng-1.2.8/*.c" "src/libs/libpng-1.2.8/*.h"
889my_generate_project "openssl" "src/libs/openssl-0.9.8t" --begin-incs "include" "src/libs/openssl-0.9.8t/crypto" --end-includes "src/libs/openssl-0.9.8t"
890my_generate_project "kStuff" "src/libs/kStuff" --begin-incs "include" "src/libs/kStuff/kStuff/include" --end-includes "src/libs/kStuff"
891
892
893# include/VBox
894my_generate_project "VBoxHeaders" "include" --begin-incs "include" --end-includes "include/VBox"
895
896# Misc
897my_generate_project "misc" "src/testcase" --begin-incs "include" --end-includes \
898 "src/testcase" \
899 "configure" \
900 "configure.vbs" \
901 "Config.kmk" \
902 "Makefile.kmk" \
903 "src/Makefile.kmk" \
904 "src/VBox/Makefile.kmk"
905
906
907# out/x.y/z/bin/sdk/bindings/xpcom
908XPCOM_INCS="src/libs/xpcom18a4"
909for d in \
910 "out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE}/dist/sdk/bindings/xpcom" \
911 "out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/${BUILD_TYPE}/dist/sdk/bindings/xpcom" \
912 "out/${KBUILD_TARGET}.${KBUILD_TARGET_ARCH}/${KBUILD_TYPE}/bin/sdk/bindings/xpcom" \
913 "out/${BUILD_TARGET}.${BUILD_TARGET_ARCH}/${BUILD_TYPE}/bin/sdk/bindings/xpcom" \
914 "out/linux.amd64/debug/bin/sdk/bindings/xpcom" \
915 "out/linux.x86/debug/bin/sdk/bindings/xpcom" \
916 "out/darwin.amd64/debug/dist/sdk/bindings/xpcom" \
917 "out/darwin.x86/debug/bin/dist/bindings/xpcom" \
918 "out/solaris.amd64/debug/bin/sdk/bindings/xpcom" \
919 "out/solaris.x86/debug/bin/sdk/bindings/xpcom";
920do
921 if test -d "${MY_ROOT_DIR}/${d}"; then
922 my_generate_project "SDK-xpcom" "${d}" --begin-incs "include" "${d}/include" --end-includes "${d}"
923 XPCOM_INCS="${d}/include"
924 break
925 fi
926done
927
928# lib/xpcom
929my_generate_project "xpcom" "src/libs/xpcom18a4" --begin-incs "include" "${XPCOM_INCS}" --end-includes "src/libs/xpcom18a4"
930
931my_generate_workspace
932
933
934#
935# Update the history file if present.
936#
937MY_FILE="${MY_WS_NAME}histu"
938if test -f "${MY_FILE}"; then
939 echo "Updating ${MY_FILE}..."
940 ${MY_MV} -f "${MY_FILE}" "${MY_FILE}.old"
941 ${MY_SED} -n \
942 -e '/PROJECT_CACHE/d' \
943 -e '/\[TreeExpansion2\]/d' \
944 -e '/^\[/p' \
945 -e '/: /p' \
946 -e '/^CurrentProject/p' \
947 "${MY_FILE}.old" > "${MY_FILE}"
948fi
949
950
951#
952# Generate and update the usercpp.h/unxcpp.h file.
953#
954my_generate_usercpp_h
955
956
957echo "done"
958
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette