The unpac monorepo manager self-hosting as a monorepo using unpac
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Use ocaml/flexdll everywhere

+6 -6
+2 -2
Makefile
··· 864 864 @echo make invocation. Simply place the sources for FlexDLL in a 865 865 @echo sub-directory. 866 866 @echo This can either be done by downloading a source tarball from 867 - @echo \ https://github.com/alainfrisch/flexdll/releases 867 + @echo \ https://github.com/ocaml/flexdll/releases 868 868 @if [ -d .git ]; then \ 869 869 echo or by checking out the flexdll submodule with; \ 870 870 echo \ git submodule update --init; \ 871 871 else \ 872 872 echo or by cloning the git repository; \ 873 - echo \ git clone https://github.com/alainfrisch/flexdll.git; \ 873 + echo \ git clone https://github.com/ocaml/flexdll.git; \ 874 874 fi 875 875 @echo "Then pass --with-flexdll=<dir> to configure and build as normal." 876 876 @false
+3 -3
README.win32.adoc
··· 84 84 85 85 [[bmflex]] 86 86 In addition to Cygwin, FlexDLL must also be installed, which is available from 87 - https://github.com/alainfrisch/flexdll. A binary distribution is available; 87 + https://github.com/ocaml/flexdll. A binary distribution is available; 88 88 instructions on how to build FlexDLL from sources, including how to bootstrap 89 89 FlexDLL and OCaml are given <<seflexdll,later in this document>>. Unless you 90 90 bootstrap FlexDLL, you will need to ensure that the directory to which you ··· 308 308 done in one of three ways: 309 309 310 310 * Extracting the sources from a tarball from 311 - https://github.com/alainfrisch/flexdll/releases 311 + https://github.com/ocaml/flexdll/releases 312 312 * Cloning the git repository by running: 313 313 + 314 - git clone https://github.com/alainfrisch/flexdll.git 314 + git clone https://github.com/ocaml/flexdll.git 315 315 316 316 * If you are compiling from a git clone of the OCaml repository, instead of 317 317 using a sources tarball, you can run:
+1 -1
utils/binutils.ml
··· 568 568 array_find (function ({name; _} : section) -> name = sectname) sections 569 569 570 570 (* We extract the list of exported symbols as encoded by flexlink, see 571 - https://github.com/alainfrisch/flexdll/blob/bd636def70d941674275b2f4b6c13a34ba23f9c9/reloc.ml 571 + https://github.com/ocaml/flexdll/blob/bd636def70d941674275b2f4b6c13a34ba23f9c9/reloc.ml 572 572 #L500-L525 *) 573 573 574 574 let read_symbols d {image_base; _} sections =