]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
Add information about NetBSD 6 compilation on i386
authorOndřej Surý <ondrej@sury.org>
Fri, 1 Mar 2019 14:19:22 +0000 (15:19 +0100)
committerEvan Hunt <each@isc.org>
Tue, 5 Mar 2019 22:27:18 +0000 (14:27 -0800)
PLATFORMS.md

index a236a7d3a4b76d0507cf5d7229fd048d0b014204..6fee4a823c22619e1945daced33c7d43ee08bee8 100644 (file)
@@ -95,8 +95,18 @@ armhf documentation):
   the processors to support here, therefore the recommended build option is
   `-mfpu=vfpv3-d16`.
 
-The configure command should look like this:
+The `configure` command should look like this:
 
 ```
 CFLAGS="-march=armv7-a -mfpu=vfpv3-d16 -Os -g" ./configure
 ```
+
+### NetBSD 6 i386
+
+The i386 build of NetBSD requires the `libatomic` library, available from
+the `gcc5-libs` package.  Because this library is in a non-standard path,
+its location must be specified in the `configure` command line:
+
+```
+LDFLAGS="-L/usr/pkg/gcc5/i486--netbsdelf/lib/ -Wl,-R/usr/pkg/gcc5/i486--netbsdelf/lib/" ./configure
+```