-
Notifications
You must be signed in to change notification settings - Fork 11
Closed
Description
Summary
llgo will introduce static library support, requiring new end-to-end tests in llcppgtest. These tests will validate static library compilation and linking by leveraging distinct import paths as specified in Issue #475.
Design
Import Path Distinction
Use zlib
for dynamic library imports (existing).
Use zlibstatic
for static library imports (new).
Test Example
// Test dynamic linking (existing)
import _ "zlib"
func TestDynamicLinkage(t *testing.T) {
// Validate dynamic library behavior
}
// Test static linking (new)
import _ "zlibstatic"
func TestStaticLinkage(t *testing.T) {
// Validate static library behavior
}
Metadata
Metadata
Assignees
Labels
No labels