This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

bash: loadable builtins


Eric,

As there was a question on this in IRC tonight, it is possible to make
bash loadable builtins work on Cygwin.

1) In src_compile(), add
LOCAL_LDFLAGS='-Wl,--export-all,--out-implib,lib$(@:.exe=.dll.a)' to the
final cygmake command.

2) In src_install(), add the following immediately after cyginstall:
  dolib libbash.dll.a
  cd ${S}
  includeinto bash
  doinclude [^y]*.h builtins/*.h include/*.h lib/{glob,tilde}/*.h
${B}/[^y]*.h

3) Builtins are compiled with `gcc -shared -I/usr/include/bash -o
foo.dll foo.c -lbash'

4) The builtin can then be loaded with enable -f foo.dll foo etc.

The only caveat is that this will only work with bash.exe, not sh.exe,
but as the latter should only be used with portable code, IMO that's a
reasonable restriction.

HTH,


Yaakov



--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]