diff --git a/racket/collects/compiler/private/mach-o.rkt b/racket/collects/compiler/private/mach-o.rkt index 4e45f3838d..c6e4473ed4 100644 --- a/racket/collects/compiler/private/mach-o.rkt +++ b/racket/collects/compiler/private/mach-o.rkt @@ -1,10 +1,11 @@ #lang racket/base +(require setup/cross-system) (provide add-plt-segment get/set-dylib-path) (define exe-id - (if (equal? (path->bytes (system-library-subpath #f)) #"x86_64-macosx") + (if (equal? (path->bytes (cross-system-library-subpath #f)) #"x86_64-macosx") #xFeedFacf #xFeedFace))