Skip to content

Commit 4fdf437

Browse files
committed
release: update contrib/release/build.sh recipe for -equation-gcc-8.3
- patch in code to enable command line wildcard expansion
1 parent 63df51e commit 4fdf437

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

contrib/release/build.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -714,6 +714,12 @@ windowsbuild() {
714714
win32) cp ../input/$libffi_title/$target$recipe/ffi.h ../input/$libffi_title/$target$recipe/ffitarget.h ./i686-pc-mingw32/include;;
715715
win64) cp ../input/$libffi_title/$target$recipe/ffi.h ../input/$libffi_title/$target$recipe/ffitarget.h ./x86_64-w64-mingw32/include;;
716716
esac
717+
718+
# patch in crt_glob.bas to enable command line wildard expansion
719+
# equation-crt-glob.bas
720+
# extern as integer _dowildcard alias "_dowildcard"
721+
# dim shared _dowildcard as integer = -1
722+
cp ../input/fbc/contrib/release/equation-crt-glob.bas fbc/src/compiler/equation-crt-glob.bas
717723
;;
718724
*)
719725
case "$target" in
@@ -781,7 +787,6 @@ windowsbuild() {
781787
exit 1
782788
;;
783789
esac
784-
785790
;;
786791
-winlibs-gcc-8.4.0)
787792
# -winlibs-gcc-X.X is being built from winlibs and the binutils have a few dependencies
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
extern as integer _dowildcard alias "_dowildcard"
2+
dim shared _dowildcard as integer = -1
3+

0 commit comments

Comments
 (0)