Conversation
pkgs/by-name/op/openctm/package.nix
Outdated
There was a problem hiding this comment.
I'm not sure whether this patch will work on Linux with GCC. Any help would be appreciated!
There was a problem hiding this comment.
Hum, it is gated by isDarwin, so it should be fine I guess. But probably we want to use stdenv.hostPlatform.is{Linux,Darwin}, ref #341407
There was a problem hiding this comment.
Yes, this should be fine since it is gated. However, I’m uncertain whether we should patch it in Linux when the user switches stdenv to LLVM. If we proceed with that change, will C++ still remain available in GCC?
The script has been updated to stdenv.hostPlatform.is{Linux,Darwin}
There was a problem hiding this comment.
You may want to use gccStdenv, since we don't know whether the author write this for a particular reason or not, and whether they will test building with clang on macOS.
There was a problem hiding this comment.
I think you’re right, gccStdenv is what we need. However, I encountered another error when switching stdenv to gccStdenv 😿
Code changed:
@@ -2,3 +2,3 @@
lib,
- stdenv,
+ gccStdenv,
fetchurl,
@@ -11,2 +11,5 @@
+let
+ stdenv = gccStdenv;
+in
stdenv.mkDerivation (finalAttrs: {
@@ -45,9 +48,4 @@ stdenv.mkDerivation (finalAttrs: {
+ lib.optionalString stdenv.hostPlatform.isDarwin ''
- substituteInPlace "lib/Makefile.macosx" \
- "tools/Makefile.macosx" \
- "tools/jpeg/makefile.macosx" \
- "tools/zlib/Makefile.macosx" \
- --replace-warn "gcc" "${stdenv.cc.targetPrefix}cc"
- substituteInPlace "lib/Makefile.macosx" "tools/Makefile.macosx" "tools/tinyxml/Make
- --replace-warn "g++" "${stdenv.cc.targetPrefix}c++"
+ substituteInPlace "tools/tinyxml/Makefile.macosx" \
+ --replace-warn "-Wno-format" "-Wno-format -Wno-format-security"
''; Result:
# some success messages ignored
cd jpeg && make -f makefile.macosx libjpeg.a
make[2]: Entering directory '/private/tmp/nix-build-openctm-1.0.3.drv-0/OpenCTM-1.0.3/tools/jpeg'
cp -f jconfig.macosx jconfig.h
gcc -O2 -Wall -I. -c jcapimin.c
gcc -O2 -Wall -I. -c jcapistd.c
gcc -O2 -Wall -I. -c jcarith.c
gcc -O2 -Wall -I. -c jctrans.c
g++ -x objective-c++ -c -O3 -W -Wall -o sysdialog_mac.o sysdialog_mac.mm
gcc -O2 -Wall -I. -c jcparam.c
gcc -O2 -Wall -I. -c jdatadst.c
gcc -O2 -Wall -I. -c jcinit.c
gcc -O2 -Wall -I. -c jcmaster.c
In file included from /nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/dispatch/dispatch.h:63,
from /nix/store/nhf361hkyv2p2cy7nx587sf936vzpvcm-apple-framework-CoreFoundation-11.0.0/Library/Frameworks/CoreFoundation.framework/Heade>
from /nix/store/nhf361hkyv2p2cy7nx587sf936vzpvcm-apple-framework-CoreFoundation-11.0.0/Library/Frameworks/CoreFoundation.framework/Heade>
from /nix/store/nhf361hkyv2p2cy7nx587sf936vzpvcm-apple-framework-CoreFoundation-11.0.0/Library/Frameworks/CoreFoundation.framework/Heade>
from /nix/store/q56y1bbrvdrn4m65bv4r7sxhxg9pifpp-apple-framework-Foundation-11.0.0/Library/Frameworks/Foundation.framework/Headers/Found>
from /nix/store/wjpfjap573f8kzc0r7ffabkbj74kmqhz-apple-framework-Cocoa-11.0.0/Library/Frameworks/Cocoa.framework/Headers/Cocoa.h:12,
from sysdialog_mac.mm:29:
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/object.h:203:1: error: expected unqualified-id before 'interface'
203 | OS_OBJECT_DECL_BASE(object, NSObject);
| ^~~~~~~~~~~~~~~~~~~
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:48:1: error: expected unqualified-id before 'interface'
48 | OS_WORKGROUP_DECL(os_workgroup, WorkGroup);
| ^~~~~~~~~~~~~~~~~
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:48:1: error: 'OS_os_workgroup' does not name a type
48 | OS_WORKGROUP_DECL(os_workgroup, WorkGroup);
| ^~~~~~~~~~~~~~~~~
In file included from /nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup.h:30,
from /nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/dispatch/dispatch.h:64:
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:93:24: error: 'os_workgroup_t' was not declared in this scope;>
93 | os_workgroup_copy_port(os_workgroup_t wg, mach_port_t *mach_port_out);
| ^~~~~~~~~~~~~~
| os_workgroup_attr_t
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:93:55: error: expected primary-expression before '*' token
93 | os_workgroup_copy_port(os_workgroup_t wg, mach_port_t *mach_port_out);
| ^
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:93:56: error: 'mach_port_out' was not declared in this scope; >
93 | os_workgroup_copy_port(os_workgroup_t wg, mach_port_t *mach_port_out);
| ^~~~~~~~~~~~~
| mach_port_t
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:93:69: error: expression list treated as compound expression i>
93 | os_workgroup_copy_port(os_workgroup_t wg, mach_port_t *mach_port_out);
| ^
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:116:1: error: 'os_workgroup_t' does not name a type; did you m>
116 | os_workgroup_t _Nullable
| ^~~~~~~~~~~~~~
| os_workgroup_attr_t
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:137:1: error: 'os_workgroup_t' does not name a type; did you m>
137 | os_workgroup_t _Nullable
| ^~~~~~~~~~~~~~
| os_workgroup_attr_t
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:177:19: error: 'os_workgroup_t' was not declared in this scope>
177 | os_workgroup_join(os_workgroup_t wg, os_workgroup_join_token_t token_out);
| ^~~~~~~~~~~~~~
| os_workgroup_join
/nix/store/kk9lnicm474vif1bmhf1268xzrn7z35f-libSystem-11.0.0/include/os/workgroup_object.h:177:64: error: expected primary-expression before 'token_out'
177 | os_workgroup_join(os_workgroup_t wg, os_workgroup_join_token_t token_out);
| ^~~~~~~~~
# ~28k lines of error message ignored
31fb3ef to
b5ca35e
Compare
b5ca35e to
6a7220c
Compare
6a7220c to
f9081aa
Compare
|
4 packages built:
|
|
Result of 6 packages built:
|
nim65s
left a comment
There was a problem hiding this comment.
lgtm, except if @Aleksanaa has a solution for this gccStdenv issue
|
Nope, it looks not very bad |
Things done
Fix darwin support with substitute gcc/g++
nix.conf? (See Nix manual)sandbox = relaxedsandbox = truenix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage./result/bin/)Add a 👍 reaction to pull requests you find important.