Sha256: 456d8610ddbcdde40948781761e11f432493f21749479b50932885b97673f2ea

Contents?: true

Size: 778 Bytes

Versions: 396

Compression:

Stored size: 778 Bytes

Contents

## Error: No implementations provided for the following modules:
         Str referenced from bob.cmx

### Message
```
+ ocamlfind ocamlopt -linkpkg -g -thread -package oUnit -package core bob.cmx test.cmx -o test.native
File "_none_", line 1:
Error: No implementations provided for the following modules:
         Str referenced from bob.cmx
Command exited with code 2.
```

### Reason
You are using a module in your solution, in this case the `Str` module, and the
OCaml build tool is not aware of this.

### Solution
Add the module you are trying to use to the `ocamlbuild` build options.

Modify the `test.native` directive of the Makefile to be:

```
test.native: *.ml *.mli
    @corebuild -quiet -pkg oUnit -pkg str test.native
```

Note the additional `-pkg str` option.

Version data entries

396 entries across 396 versions & 1 rubygems

Version Path
trackler-2.2.1.98 tracks/ocaml/exercises/bob/.meta/hints.md
trackler-2.2.1.97 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.96 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.95 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.94 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.93 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.92 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.91 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.90 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.89 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.88 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.87 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.86 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.85 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.84 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.83 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.82 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.81 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.80 tracks/ocaml/exercises/bob/HINTS.md
trackler-2.2.1.79 tracks/ocaml/exercises/bob/HINTS.md