Avoid linux to be hard dependency on build

master
Harshavardhana 10 years ago
parent a2e0a41f7e
commit 0c4dd8f5fa
  1. 2
      pkgs/crc32c/cpu/cpu.go
  2. 2
      pkgs/crc32c/crc32c.go
  3. 3
      pkgs/erasure/decode.go
  4. 6
      pkgs/erasure/encode.go
  5. 3
      pkgs/signify/signify.go
  6. 3
      pkgs/split/split.go

@ -1,4 +1,4 @@
// +build linux,amd64
// +build amd64
package cpu

@ -1,4 +1,4 @@
// +build linux,amd64
// +build amd64
package crc32c

@ -14,12 +14,11 @@
* limitations under the License.
*/
// +build linux
// +build amd64
package erasure
// #cgo CPPFLAGS: -Iisal/include
// #cgo LDFLAGS: isal/isa-l.a
// #include <stdlib.h>
// #include <erasure-code.h>
// #include <stdlib.h>

@ -14,12 +14,12 @@
* limitations under the License.
*/
// +build linux
// +build amd64
package erasure
// #cgo CPPFLAGS: -I./isal/include
// #cgo LDFLAGS: ./isal/isa-l.a
// #cgo CPPFLAGS: -Iisal/include
// #cgo LDFLAGS: isal/isa-l.a
// #include <stdlib.h>
// #include <erasure-code.h>
// #include <stdlib.h>

@ -14,8 +14,7 @@
* limitations under the License.
*/
// +build linux
// amd64
// +build amd64
package signify

@ -14,8 +14,7 @@
* limitations under the License.
*/
// +build linux
// amd64
// +build amd64
package split

Loading…
Cancel
Save