Page MenuHomeFreeBSD

Exclude assembly files from LLVM IR Builds
AbandonedPublic

Authored by bkidney_briankidney.ca on Mar 2 2017, 2:05 AM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Jul 25, 6:38 AM
Unknown Object (File)
Sat, Jul 20, 7:26 AM
Unknown Object (File)
Jun 2 2024, 9:44 PM
Unknown Object (File)
May 24 2024, 4:03 PM
Unknown Object (File)
May 14 2024, 11:06 PM
Unknown Object (File)
May 9 2024, 9:54 PM
Unknown Object (File)
May 5 2024, 7:12 AM
Unknown Object (File)
May 4 2024, 9:21 PM
Subscribers

Details

Reviewers
jonathan
bdrewery
Summary

Excludes machine dependant code (*.S) that were causing builds to fail.

Diff Detail

Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 8175
Build 8403: arc lint + arc unit

Event Timeline

bkidney_briankidney.ca retitled this revision from to Exclude assembly files from LLVM IR Builds.
bkidney_briankidney.ca updated this object.
bkidney_briankidney.ca edited the test plan for this revision. (Show Details)
share/mk/bsd.lib.mk
203

How does this interact with STATICOBJS? I think that only gets used in libpam, but it would be worth checking whether we need to do the same thing there.

  • Adds filtering to STATICOBJS for BCOJBS and LLOBJS list creation.

Roling back last commit.

As I hit enter I realized that though it is safe to filer the STATICOBJS list it doesn't make sense. STATICOBJS list only include .o files.

share/mk/bsd.lib.mk
203

STATICOBJS is initialized in the Makefile for individual builds (libc, libc++, libpam, and libgcc). In this build file it is only a list of ".o" files and we do not know there origin to determine if they should be filtered.