Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
boinc
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
einsteinathome
boinc
Commits
17b88b18
Commit
17b88b18
authored
14 years ago
by
Charlie Fenton
Browse files
Options
Downloads
Patches
Plain Diff
Mac: remove powerpc-apple-darwin from platform list supported by Intel Macs.
svn path=/trunk/boinc/; revision=23416
parent
6b0eba46
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
checkin_notes
+9
-0
9 additions, 0 deletions
checkin_notes
client/cs_platforms.cpp
+6
-2
6 additions, 2 deletions
client/cs_platforms.cpp
with
15 additions
and
2 deletions
checkin_notes
+
9
−
0
View file @
17b88b18
...
...
@@ -2409,3 +2409,12 @@ David 21 Apr 2011
sim.cpp
work_fetch.cpp
cs_statefile.cpp
Charlie 22 Apr 2011
- Mac: We no longer request PowerPC applications on Intel Macs
because all projects supporting Macs should have Intel
applications by now, and PowerPC emulation ("Rosetta") is
not always supported in newer versions of OS X.
client/
cs_platforms.cpp
This diff is collapsed.
Click to expand it.
client/cs_platforms.cpp
+
6
−
2
View file @
17b88b18
...
...
@@ -117,9 +117,13 @@ void CLIENT_STATE::detect_platforms() {
// Supported on both Mac Intel architectures
add_platform
(
"i686-apple-darwin"
);
#endif
// Supported on all 3 Mac architectures
#else
// We no longer request PowerPC applications on Intel Macs
// because all projects supporting Macs should have Intel
// applications by now, and PowerPC emulation ("Rosetta")
// is not always supported in newer versions of OS X.
add_platform
(
"powerpc-apple-darwin"
);
#endif
#elif defined(__linux__) && ( defined(__i386__) || defined(__x86_64__) )
// Let's try to support both 32 and 64 bit applications in one client
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment